spawnpack 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,55 @@
1
+ {
2
+ "name": "spawnpack",
3
+ "version": "0.1.0",
4
+ "description": "Minecraft Bedrock addon project generator — scaffold your BP+RP in seconds",
5
+ "author": "veedy-dev",
6
+ "license": "MIT",
7
+ "type": "module",
8
+ "bin": {
9
+ "spawnpack": "bin/spawnpack.js"
10
+ },
11
+ "files": [
12
+ "bin/spawnpack.js",
13
+ "dist/spawnpack.js",
14
+ "templates/CLAUDE.md",
15
+ "README.md",
16
+ "LICENSE",
17
+ "package.json"
18
+ ],
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "git+https://github.com/veedy-dev/spawnpack.git"
22
+ },
23
+ "bugs": {
24
+ "url": "https://github.com/veedy-dev/spawnpack/issues"
25
+ },
26
+ "homepage": "https://github.com/veedy-dev/spawnpack#readme",
27
+ "keywords": [
28
+ "minecraft",
29
+ "bedrock",
30
+ "addon",
31
+ "generator",
32
+ "cli",
33
+ "spawnpack",
34
+ "regolith",
35
+ "rgl"
36
+ ],
37
+ "engines": {
38
+ "bun": ">=1.2.0"
39
+ },
40
+ "scripts": {
41
+ "start": "bun run src/index.ts",
42
+ "dev": "bun --watch src/index.ts",
43
+ "build": "bun build src/index.ts --outfile dist/spawnpack.js --target node",
44
+ "typecheck": "tsc --noEmit",
45
+ "prepack": "bun run typecheck && bun run build"
46
+ },
47
+ "dependencies": {
48
+ "@clack/prompts": "^1.2.0",
49
+ "picocolors": "^1.1.1"
50
+ },
51
+ "devDependencies": {
52
+ "@types/bun": "^1.2.0",
53
+ "typescript": "^5.7.0"
54
+ }
55
+ }