-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·80 lines (80 loc) · 2.22 KB
/
package.json
File metadata and controls
executable file
·80 lines (80 loc) · 2.22 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "sandstone-cli",
"version": "2.4.0",
"description": "The CLI for Sandstone - the minecraft pack creation library.",
"type": "module",
"exports": "./lib/index.js",
"bin": {
"sand": "./lib/index.js",
"create-sandstone": "./lib/create.js"
},
"scripts": {
"bundle": "bun scripts/version.ts && bun build src/index.ts --outdir=lib --sourcemap=external --target=bun --external=@parcel/watcher --external=figlet --external=@inquirer/prompts && bun build src/create.ts --outdir=lib --sourcemap=external --target=bun --external=@parcel/watcher --external=figlet --external=@inquirer/prompts",
"dev:build": "tsc && bun bundle",
"test:harness": "npx tsx scripts/test-harness.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sandstone-mc/sandstone-cli.git"
},
"keywords": [
"sandstone",
"cli",
"command",
"line",
"interface",
"datapack",
"minecraft"
],
"contributors": [
{
"name": "TheMrZZ - Florian ERNST",
"url": "https://github.com/TheMrZZ"
},
{
"email": "mulverin3@gmail.com",
"name": "MulverineX",
"url": "https://github.com/MulverineX"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/sandstone-mc/sandstone-cli/issues"
},
"homepage": "https://github.com/sandstone-mc/sandstone-cli#readme",
"dependencies": {
"@inquirer/prompts": "^8.2.0",
"@parcel/watcher": "^2.5.6",
"@sandstone-mc/hot-hook": "^0.1.0",
"@types/chalk": "^2.2.4",
"adm-zip": "^0.5.10",
"chalk": "^5.6.2",
"chalk-template": "^1.1.0",
"commander": "^10.0.1",
"figlet": "^1.6.0",
"fs-extra": "^11.1.1",
"ink": "^6.6.0",
"ink-spinner": "^5.0.0",
"nanoid": "^4.0.2",
"node-fetch": "^3.3.2",
"obliterator": "^2.0.5",
"react": "^19.2.4",
"semver": "^7.5.4",
"source-map-js": "^1.2.1"
},
"devDependencies": {
"@types/adm-zip": "^0.5.2",
"@types/figlet": "^1.5.6",
"@types/fs-extra": "^11.0.2",
"@types/react": "^19.2.10",
"@types/semver": "^7.5.3",
"bun-types": "^1.3.9",
"node-pty": "^1.1.0",
"sandstone": "^1.0.0-beta.4",
"typescript": "^5.2.2"
},
"trustedDependencies": [
"@parcel/watcher",
"node-pty"
]
}