-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
70 lines (70 loc) · 1.68 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
61
62
63
64
65
66
67
68
69
70
{
"name": "@labelu/components-react",
"version": "1.7.6",
"description": "basic react components for labelU",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"sideEffects": [
"**/*.css"
],
"files": [
"dist"
],
"scripts": {
"build": "vite build && npm run build:types",
"build:types": "tsc -d --emitDeclarationOnly",
"clean": "rimraf ./node_modules",
"start": "vite -c vite.config.app.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/opendatalab/labelU-Kit.git"
},
"publishConfig": {
"access": "public"
},
"author": {
"name": "gary",
"email": "[email protected]"
},
"keywords": [
"video",
"annotation",
"editor",
"react"
],
"dependencies": {
"@labelu/i18n": "1.0.4",
"polished": "^4.2.2",
"rc-collapse": "^3.7.1",
"rc-dialog": "^9.2.0",
"rc-field-form": "1.37.0",
"rc-tooltip": "^6.0.1",
"rc-tree": "^5.7.10",
"react-draggable": "^4.4.5",
"react-hotkeys-hook": "^4.4.1",
"resize-observer-polyfill": "^1.5.1",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@labelu/interface": "1.3.1",
"@types/react": "^18.2.2",
"@types/styled-components": "^5.1.26",
"@vitejs/plugin-react": "^3.1.0",
"npm-run-all": "^4.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"typescript": "4.8.4",
"vite": "^4.1.1",
"vite-plugin-dts": "^3.6.3",
"vite-plugin-svgr": "^2.4.0",
"vite-tsconfig-paths": "^3.5.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"license": "Apache-2.0"
}