-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
46 lines (46 loc) · 1.18 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
{
"name": "openlime",
"version": "1.0.1",
"description": "Layered Image Explorer",
"author": "",
"license": "GPL-3.0",
"private": false,
"main": "build/openlime.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server",
"build": "webpack -c webpack.config.js --mode development",
"rollup": "rollup -c rollup.config.js --extend",
"nodemon": "nodemon --watch ./src --exec npm run rollup",
"doc": "jsdoc -c jsdoc/jsdoc.json -R README.md"
},
"repository": {
"type": "git",
"url": "https://github.com/cnr-isti-vclab/openlime"
},
"keywords": [],
"devDependencies": {
"@rollup/plugin-multi-entry": "^4.1.0",
"copy-webpack-plugin": "^10.2.4",
"html-webpack-plugin": "^5.5.0",
"jsdoc": "^4.0.4",
"rollup": "^2.52.3",
"rollup-plugin-terser": "^7.0.2",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"dependencies": {
"@tensorflow/tfjs": "^4.2.0",
"moment": "^2.30.1",
"sanitize-html": "^2.13.1",
"taffydb": "^2.7.3"
},
"files": [
"build/openlime.js",
"LICENSE",
"package.json",
"README.md",
"src"
]
}