-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.03 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.03 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
{
"name": "iso",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"demo:dev": "vite --config demo/vite.config.ts",
"demo:build": "vite build --config demo/vite.config.ts",
"demo:preview": "vite preview --config demo/vite.config.ts",
"test": "npm run test --workspaces --if-present",
"test:dogfood": "node examples/dogfood/build.mjs",
"test:pack": "node scripts/pack-smoke.mjs",
"test:pipeline": "node examples/pipeline/build.mjs",
"typecheck": "npm run typecheck --workspaces --if-present",
"clean": "npm run clean --workspaces --if-present",
"changeset": "changeset",
"changeset:status": "changeset status --verbose",
"version": "changeset version && npm install --package-lock-only"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@types/node": "^22.10.0",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"vite": "^8.0.10"
},
"engines": {
"node": ">=18.17.0"
}
}