-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.47 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.47 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "editor-ui-root",
"version": "1.0.0",
"description": "An opinionated UI library designed to create engaging and functional online tools with ease.",
"scripts": {
"lint": "pretty-quick --staged",
"dev": "pnpm --filter \"@galacean/editor-ui\" dev",
"dev:gui": "pnpm --filter \"@galacean/gui\" dev",
"dev:demo": "pnpm --filter app dev",
"example:gui": "pnpm --filter \"@galacean/gui\" example",
"build": "pnpm --filter \"@galacean/editor-ui\" build",
"build:gui": "pnpm --filter \"@galacean/gui\" build",
"build:app": "pnpm --filter app build",
"analyze:app": "pnpm --filter app analyze",
"clear": "npx rimraf ./**/*/node_modules",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && pnpm build:gui && changeset publish"
},
"keywords": [
"ui",
"editor",
"tool",
"react",
"3d",
"inspector"
],
"author": "Mrkou47",
"license": "MIT",
"packageManager": "pnpm@9.2.0",
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@galacean/engine": "latest",
"@galacean/engine-toolkit": "latest",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^22.10.5",
"@vitejs/plugin-react": "^4.3.4",
"@vitejs/plugin-react-swc": "^3.7.2",
"bumpp": "^10.2.3",
"chromatic": "^11.7.1",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"rimraf": "^6.0.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^6.0.1",
"simple-git-hooks": "^2.11.1",
"tsup": "^8.2.4",
"typescript": "^5.7.0",
"vite": "^6.3.5"
},
"overrides": {
"@radix-ui/react-dismissable-layer": "1.1.4",
"@radix-ui/react-dropdown-menu": "2.1.4",
"@radix-ui/react-select": "2.1.4",
"@radix-ui/react-popover": "1.1.4",
"@radix-ui/react-dialog": "1.1.4",
"@radix-ui/react-alert-dialog": "1.1.4"
},
"pnpm": {
"overrides": {
"@radix-ui/react-dismissable-layer": "1.1.4",
"@radix-ui/react-dropdown-menu": "2.1.4",
"@radix-ui/react-select": "2.1.4",
"@radix-ui/react-popover": "1.1.4",
"@radix-ui/react-dialog": "1.1.4",
"@radix-ui/react-alert-dialog": "1.1.4"
}
},
"prettier": {
"bracketSameLine": true,
"semi": false,
"trailingComma": "es5",
"singleQuote": true,
"tabWidth": 2,
"printWidth": 120
},
"simple-git-hooks": {
"pre-commit": "pnpm run lint"
}
}