-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
60 lines (60 loc) · 1.65 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "ulabel",
"description": "An image annotation tool.",
"version": "0.16.1",
"main": "dist/ulabel.js",
"module": "dist/ulabel.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"demo": "node demo.js",
"build": "tsc && webpack --mode production",
"build-dev": "tsc && webpack --mode development",
"build-and-demo": "npm run build && npm run demo",
"build-dev-and-demo": "npm run build-dev && npm run demo",
"prepare": "husky",
"lint": "eslint . --no-fix"
},
"lint-staged": {
"**/*.{js,mjs,cjs,ts}": "eslint --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/SenteraLLC/ulabel"
},
"keywords": [
"image",
"annotation",
"object detection",
"segmentation"
],
"author": "Nicholas Heller <helle246@umn.edu> (https://www-users.cs.umn.edu/~helle246/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/SenteraLLC/ulabel/issues"
},
"homepage": "https://github.com/SenteraLLC/ulabel",
"dependencies": {
"@turf/turf": "^6.5.0",
"jquery": "^3.5.1",
"polygon-clipping": "^0.15.7",
"uuidv4": "^6.2.6"
},
"devDependencies": {
"@eslint/config-inspector": "^0.5.4",
"@eslint/js": "^9.11.1",
"@stylistic/eslint-plugin": "^2.8.0",
"@types/eslint__js": "^8.42.3",
"@types/jquery": "^3.5.31",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"express": "^4.17.1",
"globals": "^15.9.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.3.1"
},
"unpkg": "dist/ulabel.js"
}