-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.33 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
44
45
46
47
{
"name": "distmljs",
"version": "1.0.0",
"description": "Distributed Deep Learning Framework for Web",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"eslint": "eslint . --ext .ts",
"eslint:fix": "eslint . --ext .ts --fix",
"serve": "http-server -c-1",
"webpack": "webpack",
"webpack:watch": "webpack --watch",
"webpack:test": "webpack --config webpack-test.config.js",
"webpack:test:watch": "webpack --config webpack-test.config.js --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/mil-tokyo/distmljs.git"
},
"author": "The University of Tokyo and Edge Intelligence Systems",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"@webgpu/glslang": "0.0.15",
"@webgpu/types": "^0.1.12",
"chai": "^4.3.4",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"http-server": "^14.0.0",
"mocha": "^9.1.3",
"prettier": "^2.5.1",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"typedoc": "^0.22.12",
"typescript": "^4.5.4",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"long": "^5.2.0"
}
}