forked from opendatalab/labelU-Kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.46 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.46 KB
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
{
"name": "@labelu/video-annotator-react",
"version": "1.4.2",
"description": "video annotator for react",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "vite build && npm run build:types",
"build:types": "tsc -d --emitDeclarationOnly",
"dev": "vite -c vite.config.app.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/opendatalab/labelU-Kit.git"
},
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"author": {
"name": "gary",
"email": "shenguanlin@pjlab.org.cn"
},
"keywords": [
"video",
"annotation",
"annotator",
"react"
],
"dependencies": {
"@labelu/components-react": "1.7.4",
"@labelu/interface": "1.3.1",
"@labelu/i18n": "1.0.2",
"@labelu/audio-annotator-react": "1.7.4",
"@labelu/video-react": "1.4.2",
"polished": "^4.2.2",
"react-hotkeys-hook": "^4.4.1",
"styled-components": "^5.3.6"
},
"devDependencies": {
"typescript": "4.8.4",
"@types/react": "^18.2.20",
"@types/styled-components": "^5.1.26",
"@vitejs/plugin-react": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"vite": "^4.1.1",
"vite-plugin-svgr": "^2.4.0",
"vite-plugin-ts-mono-alias": "^1.1.0",
"vite-tsconfig-paths": "^3.5.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}