-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.38 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.38 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
{
"name": "spawnpack",
"version": "0.1.3",
"description": "Minecraft Bedrock addon project generator — scaffold your BP+RP in seconds",
"author": "veedy-dev",
"license": "MIT",
"type": "module",
"bin": {
"spawnpack": "bin/spawnpack.js"
},
"files": [
"bin/spawnpack.js",
"dist/spawnpack.js",
"templates/CLAUDE.md",
"README.md",
"LICENSE",
"package.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/veedy-dev/spawnpack.git"
},
"bugs": {
"url": "https://github.com/veedy-dev/spawnpack/issues"
},
"homepage": "https://github.com/veedy-dev/spawnpack#readme",
"keywords": [
"minecraft",
"bedrock",
"addon",
"generator",
"cli",
"spawnpack",
"regolith",
"rgl"
],
"engines": {
"bun": ">=1.2.0"
},
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun --watch src/index.ts",
"build": "bun build src/index.ts --outfile dist/spawnpack.js --target node",
"typecheck": "tsc --noEmit",
"prepack": "bun run typecheck && bun run build"
},
"dependencies": {
"@clack/prompts": "^1.2.0",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@types/bun": "^1.2.0",
"typescript": "^5.7.0"
}
}