-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 984 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 984 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
25
26
27
28
29
30
31
32
33
{
"name": "ui",
"license": "MIT",
"private": true,
"author": {
"name": "stabldev",
"url": "https://x.com/stabldev"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"clean": "turbo run clean && rm -rf node_modules",
"format:check": "turbo run format:check",
"format:write": "turbo run format:write",
"changeset": "changeset",
"release": "pnpm release:version && pnpm release:publish",
"release:publish": "turbo run build --filter=headcn && changeset publish",
"release:version": "changeset version",
"www:dev": "turbo run dev --filter=www",
"www:build": "turbo run build --filter=www",
"prepare": "husky",
"pre-commit": "lint-staged",
"typecheck": "turbo run typecheck"
},
"packageManager": "pnpm@10.13.1",
"devDependencies": {
"@changesets/cli": "^2.29.5",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"turbo": "^2.5.4"
}
}