-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 752 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 752 Bytes
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
{
"name": "static-kit-monorepo",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "bun run --watch --watch-ignore='**/gen/**' packages/cli/src/cli.ts dev",
"build": "bun run packages/cli/src/cli.ts build",
"gen": "bun run packages/cli/src/cli.ts gen",
"sprite": "bun run packages/cli/src/cli.ts sprite",
"typecheck": "tsc --noEmit",
"test": "bun test",
"release": "bun run scripts/publish.ts"
},
"devDependencies": {
"@types/bun": "latest",
"@types/html-minifier-terser": "^7.0.2",
"bun-types": "^1.3.4",
"typescript": "^5"
},
"dependencies": {
"@vojtaholik/static-kit-core": "workspace:*",
"parse5": "^8.0.0",
"zod": "^4.1.13"
}
}