-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.54 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.54 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
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "create-electrobun-stack",
"version": "1.2.3",
"description": "Scaffold a modern Electrobun desktop app.",
"type": "module",
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"bin": {
"create-electrobun-stack": "dist/index.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TDanks2000/create-electrobun-stack.git"
},
"bugs": {
"url": "https://github.com/TDanks2000/create-electrobun-stack/issues"
},
"homepage": "https://github.com/TDanks2000/create-electrobun-stack#readme",
"keywords": [
"bun",
"create",
"desktop",
"electrobun",
"react",
"scaffold",
"svelte",
"sveltekit",
"typescript",
"vite"
],
"scripts": {
"start": "bun run src/index.ts",
"build": "tsdown --config-loader native",
"pack:check": "npm pack --dry-run",
"pack:smoke": "bun scripts/smoke-packed-package.ts",
"prepack": "bun run build",
"test": "bun test",
"typecheck": "tsc --noEmit",
"validate": "bun scripts/validate-generated-projects.ts --full",
"validate:render": "bun scripts/validate-generated-projects.ts",
"lint": "biome check .",
"format": "biome check --write ."
},
"files": [
"dist",
"docs",
"templates"
],
"dependencies": {
"@clack/prompts": "^1.3.0",
"handlebars": "^4.7.8"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@types/bun": "^1.3.8",
"@types/node": "^24.10.2",
"tsdown": "^0.22.0",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=20.19.0"
}
}