-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 2.58 KB
/
package.json
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
{
"name": "root",
"version": "0.0.0",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Boston343/starwind.git"
},
"scripts": {
"build": "turbo build",
"dev": "turbo dev --parallel",
"clean": "turbo clean",
"clean:node": "node scripts/clean.mjs",
"format": "pnpm run format:code && pnpm run format:imports",
"format:ci": "pnpm run format:code:ci && pnpm run format:imports:ci",
"format:code": "biome format --write && prettier -w \"**/*\" --ignore-unknown --cache",
"format:code:ci": "biome format && prettier -w \"**/*\" --ignore-unknown --cache --check",
"format:imports": "biome check --formatter-enabled=false --write",
"format:imports:ci": "biome ci --formatter-enabled=false",
"format:write": "turbo run format:write",
"format:check": "turbo run format:check",
"cli:dev": "pnpm --filter=starwind dev",
"cli:build": "pnpm --filter=starwind build",
"cli:start": "pnpm --filter=starwind start:dev",
"cli:link": "pnpm --filter=starwind cli:link",
"cli:unlink": "pnpm --filter=starwind cli:unlink",
"core:build": "pnpm --filter=@starwind-ui/core build",
"core:dev": "pnpm --filter=@starwind-ui/core dev",
"core:sync": "pnpm --filter=@starwind-ui/core sync:docs && pnpm --filter=@starwind-ui/core sync:demo",
"core:link": "pnpm --filter=@starwind-ui/core core:link",
"core:unlink": "pnpm --filter=@starwind-ui/core core:unlink",
"l": "pnpm core:link && pnpm cli:link",
"ul": "pnpm core:unlink && pnpm cli:unlink",
"demo:dev": "pnpm --filter=demo dev",
"demo:build": "pnpm --filter=demo build",
"demo:preview": "pnpm --filter=demo preview",
"typecheck": "turbo typecheck",
"check": "turbo lint typecheck format:check",
"version": "changeset version",
"cli:publish:beta": "cd packages/cli && pnpm publish:beta",
"cli:publish:next": "cd packages/cli && pnpm publish:next",
"cli:publish:release": "cd packages/cli && pnpm publish:release",
"core:publish:beta": "cd packages/core && pnpm publish:beta",
"core:publish:next": "cd packages/core && pnpm publish:next",
"core:publish:release": "cd packages/core && pnpm publish:release",
"preinstall": "npx only-allow pnpm"
},
"dependencies": {
"turbo": "^2.3.3"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "^2.27.11",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.9",
"typescript": "^5.3.3"
},
"packageManager": "pnpm@9.15.2",
"engines": {
"node": "^20.6.0 || >=22.0.0"
},
"pnpm": {
"peerDependencyRules": {
"allowAny": [
"astro",
"vite"
]
}
}
}