forked from annotorious/annotorious
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.54 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
{
"name": "@recogito/annotorious",
"version": "2.5.11",
"description": "A JavaScript image annotation library",
"main": "dist/annotorious.min.js",
"scripts": {
"start": "webpack serve --open --mode=development",
"build": "webpack --mode=production",
"prepare": "./build.sh",
"build-polyfills": "webpack --mode=production --config webpack.polyfills.js",
"vite-build": "vite build && mv ./dist/annotorious.umd.js ./dist/annotorious.min.js && mv ./dist/style.css ./dist/annotorious.min.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/recogito/annotorious.git"
},
"keywords": [
"Annotation",
"ImageAnnotation"
],
"author": "Rainer Simon",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/recogito/annotorious/issues"
},
"homepage": "https://recogito.github.io/annotorious",
"funding": "https://github.com/sponsors/rsimon",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@preact/preset-vite": "^2.1.0",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.6",
"html-webpack-plugin": "^4.5.2",
"mini-css-extract-plugin": "^1.6.0",
"sass": "^1.35.2",
"sass-loader": "^10.2.0",
"vite": "^2.3.7",
"webpack": "^5.58.1",
"webpack-cli": "^4.9.0",
"webpack-dev-server": "^4.3.1"
},
"dependencies": {
"@recogito/recogito-client-core": "1.5.4",
"@turf/turf": "^6.5.0",
"preact": "^10.5.13",
"tiny-emitter": "^2.1.0"
}
}