-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
43 lines (43 loc) · 1004 Bytes
/
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": "@epfml/discojs",
"version": "3.0.0",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"watch": "nodemon --ext ts --ignore dist --exec npm run",
"build": "tsc",
"lint": "npx eslint .",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/epfml/disco.git"
},
"bugs": {
"url": "https://github.com/epfml/disco/issues"
},
"homepage": "https://github.com/epfml/disco#readme",
"dependencies": {
"@epfml/isomorphic-wrtc": "1",
"@jimp/core": "1",
"@jimp/plugin-resize": "1",
"@msgpack/msgpack": "3",
"@tensorflow/tfjs": "4",
"@xenova/transformers": "2",
"isomorphic-ws": "5",
"simple-peer": "9",
"tslib": "2",
"ws": "8"
},
"devDependencies": {
"@tensorflow/tfjs-node": "4",
"@types/chai": "5",
"@types/mocha": "10",
"@types/simple-peer": "9",
"chai": "5",
"mocha": "10",
"nodemon": "3",
"ts-node": "10"
}
}