-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 740 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 740 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": "design-sdk",
"private": true,
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean",
"changeset": "changeset",
"version": "changeset version && pnpm install",
"release": "pnpm build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/node": "^20.11.0",
"rimraf": "^5.0.5",
"tsup": "^8.5.1",
"turbo": "^2.0.0",
"typescript": "^5.3.3",
"vite": "^7.3.0",
"vitest": "^4.0.16"
},
"packageManager": "pnpm@10.26.1",
"engines": {
"node": ">=24"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}