-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.13 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.13 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
{
"name": "@trycompai/design-system-monorepo",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"storybook": "turbo run dev --filter=@comp/storybook",
"version:patch": "pnpm --filter @trycompai/design-system exec npm version patch",
"version:minor": "pnpm --filter @trycompai/design-system exec npm version minor",
"version:major": "pnpm --filter @trycompai/design-system exec npm version major",
"release": "pnpm typecheck && pnpm --filter @trycompai/design-system publish --no-git-checks"
},
"devDependencies": {
"prettier": "^3.7.4",
"turbo": "^2.7.1",
"typescript": "5.9.2"
},
"packageManager": "pnpm@9.0.0+sha512.b4106707c7225b1748b61595953ccbebff97b54ad05d002aa3635f633b9c53cd666f7ce9b8bc44704f1fa048b9a49b55371ab2d9e9d667d1efe2ef1514bcd513",
"engines": {
"node": ">=18"
},
"overrides": {
"esbuild": "0.25.12"
},
"workspaces": [
"apps/*",
"packages/*"
],
"version": "0.0.1"
}