-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.09 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.09 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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "windbase-templates",
"version": "1.0.0",
"description": "Dynamic template repository for Windbase with CLI tooling",
"module": "index.ts",
"type": "module",
"main": "dist/index.js",
"bin": {
"windbase": "./dist/cli/windbase.js"
},
"scripts": {
"windbase": "bun run src/cli/bin/windbase.ts",
"format:check": "biome check .",
"format:write": "biome check --write .",
"build": "bun windbase build",
"validate": "bun run src/cli/commands/validate.ts",
"test": "bun test"
},
"devDependencies": {
"@biomejs/biome": "^2.1.1",
"@types/bun": "latest",
"@types/fs-extra": "^11.0.4"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@types/inquirer": "^9.0.8",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"fs-extra": "^11.2.0",
"inquirer": "^12.7.0",
"playwright": "^1.54.0",
"sharp": "^0.34.3",
"zod": "^4.0.5"
},
"keywords": [
"windbase",
"templates",
"cli",
"html",
"css",
"components"
],
"author": "Windbase Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/windbase/templates.git"
}
}