-
Notifications
You must be signed in to change notification settings - Fork 2k
/
Copy pathpackage.json
35 lines (35 loc) · 1.08 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
{
"name": "use-treeshake",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"make-custom-tfjs-modules": "node ./node_modules/@tensorflow/tfjs/dist/tools/custom_module/cli.js --config app_tfjs_config.json",
"rollup:full": "rollup -c",
"rollup:custom": "rollup -c --useCustomTfjs",
"webpack:full": "webpack",
"webpack:custom": "webpack --env useCustomTfjs"
},
"dependencies": {
"@tensorflow-models/universal-sentence-encoder": "^1.3.2",
"@tensorflow/tfjs": "4.18.0"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"file-loader": "^6.1.0",
"rollup": "^2.23.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-visualizer": "^4.0.4",
"terser-webpack-plugin": "^5.3.1",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.2"
},
"resolutions": {
"minimist": "1.2.6"
}
}