forked from sandstone-mc/sandstone-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·59 lines (59 loc) · 1.33 KB
/
package.json
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
{
"name": "sandstone-build",
"version": "1.1.1",
"description": "The Build component for the Sandstone CLI.",
"type": "module",
"exports": "./lib/index.js",
"scripts": {
"test": "echo NO TESTS",
"build": "tsc"
},
"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": {
"adm-zip": "^0.5.10",
"chalk": "^5.3.0",
"chalk-template": "^1.1.0",
"delete-empty": "^3.0.0",
"fs-extra": "^11.1.1",
"klaw": "^4.1.0",
"nanoid": "^4.0.2",
"node-fetch": "^3.3.2",
"pretty-error": "^4.0.0",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/adm-zip": "^0.5.2",
"@types/delete-empty": "^3.0.2",
"@types/fs-extra": "^11.0.2",
"@types/klaw": "^3.0.4",
"typescript": "^5.2.2"
}
}