-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
47 lines (47 loc) · 1.5 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
{
"name": "monorepo",
"description": "Carbon monorepo",
"private": true,
"repository": "github:buape/carbon",
"scripts": {
"build": "turbo run build",
"changeset": "changeset add",
"ci": "pnpm build --filter !website",
"cf": "pnpm build --filter @buape/carbon... && turbo run dev --filter demo-cloudo",
"cli": "cd packages/create-carbon && pnpm cli",
"dev": "env-cmd -- turbo run dev --env-mode loose --filter !demo-cloudo",
"generate": "turbo gen package",
"lint": "biome check . --write",
"preinstall": "npx only-allow pnpm",
"publish": "changeset version && pnpm run build && changeset publish",
"publish:snapshot": "changeset version --snapshot beta && pnpm run build && changeset publish --tag beta --no-git-tag ",
"start": "turbo run start --filter !demo-cloudo",
"test": "vitest",
"web": "pnpm run web:docs && turbo run web:dev",
"web:build": "pnpm run web:docs && turbo run web:build",
"web:docs": "turbo run docs",
"web:start": "turbo run web:start"
},
"dependencies": {
"@net-tech-/env-cmd": "1.0.3"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/changelog-git": "0.2.0",
"@changesets/cli": "2.27.9",
"@turbo/gen": "2.2.1",
"tsc-watch": "6.2.0",
"turbo": "2.2.1",
"type-fest": "4.26.1",
"typedoc": "0.26.10",
"typedoc-plugin-frontmatter": "1.0.0",
"typedoc-plugin-markdown": "4.2.9",
"typedoc-plugin-mdn-links": "3.3.3",
"typescript": "5.6.3",
"vitest": "2.1.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
}
}