-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.93 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.93 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
59
60
{
"name": "@sibvisions/reactui-designer",
"version": "2.1.8",
"type": "module",
"main": "moduleIndex.cjs",
"module": "moduleIndex.js",
"types": "moduleIndex.d.ts",
"license": "Apache-2.0 license",
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"bundle": "vite build -c vite.library.config.ts",
"audit": "npm audit --omit=dev",
"clean": "rimraf dist",
"link": "npm run package && cd dist && npm link",
"package": "npm run clean && npm run bundle && node dist/SetupPackage.cjs",
"pre-package": "npm run build && npm run package",
"build-patch": "npm run pre-package && npm version patch && cd dist && npm version patch && npm publish --access=public",
"build-minor": "npm run pre-package && npm version minor && cd dist && npm version minor && npm publish --access=public",
"build-major": "npm run pre-package && npm version major && cd dist && npm version major && npm publish --access=public"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^7.0.0",
"primeicons": "^7.0.0",
"primereact": "^10.9.4",
"quill": "2.0.2",
"react-color": "^2.19.3",
"react-rnd": "^10.3.7",
"react-topbar-progress-indicator": "^4.1.1",
"react-transition-group": "^4.4.2",
"tinycolor2": "^1.4.2",
"underscore": "^1.13.6",
"web-vitals": "^5.0.3"
},
"peerDependencies": {
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"vite": "^8.0.0",
"vite-plugin-dts": "^5.0.0",
"typescript": "^6.0.3",
"esbuild": "^0.28.0",
"sass": "^1.57.1",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/node": "^25.2.3",
"@types/quill": "^2.0.14",
"@types/react-color": "^3.0.6",
"@types/underscore": "^1.11.4",
"@vitejs/plugin-react": "^6.0.1",
"rimraf": "^6.0.1",
"rollup-plugin-copy": "^3.4.0"
},
"overrides": {
"glob": "^11.1.0",
"ajv": "^8.18.0"
}
}