-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.56 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
35
36
37
38
39
40
{
"name": "baseui.sh",
"version": "0.1.0",
"private": true,
"description": "The open-source baseui.sh design language, React component library, documentation, and examples.",
"workspaces": [
"packages/*",
"apps/*",
"examples/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"build:library": "npm run build --workspace @wundercorp/baseui",
"dev": "npm run dev --workspace @baseui.sh/docs",
"dev:docs": "npm run dev --workspace @baseui.sh/docs",
"dev:example": "npm run dev --workspace @baseui.sh/example-vite-react",
"check": "npm run check --workspaces --if-present",
"test": "npm run test --workspace @wundercorp/baseui",
"ci": "npm run check && npm run test && npm run build && npm run verify:package && npm run verify:consumer",
"clean": "node scripts/clean.mjs",
"pack": "npm pack --workspace @wundercorp/baseui --pack-destination .artifacts",
"verify:package": "node scripts/verify-package.mjs",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "npm run build:library && changeset publish",
"verify:consumer": "node scripts/verify-consumer.mjs",
"release:dry-run": "npm run ci && npm publish --workspace @wundercorp/baseui --dry-run --access public",
"release:inspect": "npm pack --workspace @wundercorp/baseui --dry-run"
},
"devDependencies": {
"@changesets/cli": "^2.29.0",
"@types/node": "20.19.0",
"typescript": "^5.8.0"
},
"engines": {
"node": ">=20.19.0"
},
"packageManager": "npm@10.9.2",
"license": "Apache-2.0"
}