-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.31 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "numero",
"version": "0.6.0",
"description": "A friendly and intuitive math library for p5.js",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"test": "karma start --single-run --browsers ChromeHeadless karma.conf.js",
"dev": "webpack --watch --config webpack.config.js",
"all": "npm run build && npm run test"
},
"repository": "https://github.com/nickmcintyre/numero.git",
"author": "Nick McIntyre <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.1",
"@types/p5": "^1.7.6",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"chai": "^4.3.10",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"karma": "^6.4.3",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-mocha": "^2.0.1",
"katex": "^0.16.10",
"mocha": "^10.4.0",
"p5": "^1.9.4",
"ts-loader": "^9.5.1",
"typedoc": "^0.25.13",
"typescript": "^5.4.5",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@tensorflow/tfjs-core": "^4.20.0",
"@tensorflow/tfjs-backend-cpu": "^4.20.0",
"@tensorflow/tfjs-backend-webgl": "^4.20.0"
}
}