-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 979 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 979 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "ui-react",
"workspaces": [
"packages/*"
],
"scripts": {
"format": "bun run --cwd packages/theme format && bun run --cwd packages/ui format && bun run --cwd packages/dev format",
"format:check": "bun run --cwd packages/theme format:check && bun run --cwd packages/ui format:check && bun run --cwd packages/dev format:check",
"lint": "bun run --cwd packages/theme lint && bun run --cwd packages/ui lint && bun run --cwd packages/dev lint",
"dev": "bun run --cwd packages/dev dev",
"build": "bun run --cwd packages/theme build && bun run --cwd packages/ui build",
"clean": "bun run --cwd packages/theme clean && bun run --cwd packages/ui clean"
},
"devDependencies": {
"@types/node": "^20.10.3",
"@types/web": "^0.0.143",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"prettier": "^3.1.0",
"tsup": "^8.0.1",
"typescript": "^5.3.2"
}
}