forked from sandstone-mc/sandstone-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.28 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.28 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
81
{
"name": "sandstone-cli",
"description": "The CLI for Sandstone - the data pack creation library.",
"version": "0.5.0",
"author": "TheMrZZ - Florian ERNST",
"bin": {
"sand": "./bin/run"
},
"bugs": "https://github.com/TheMrZZ/sandstone-cli/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^3",
"@oclif/plugin-warn-if-update-available": "^1.7.0",
"@types/semver": "^7.3.4",
"chalk": "^4.1.0",
"chokidar": "^3.4.3",
"fs-extra": "^9.0.1",
"inquirer": "^7.3.3",
"lodash.debounce": "^4.0.8",
"nanoid": "^3.1.20",
"pretty-error": "^2.1.2",
"semver": "^7.3.4",
"ts-node": "^9.0.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@types/fs-extra": "^9.0.4",
"@types/inquirer": "^7.3.1",
"@types/lodash.debounce": "^4.0.6",
"@types/nodemon": "^1.19.0",
"eslint": "^5.13",
"eslint-config-oclif": "^3.1",
"eslint-config-oclif-typescript": "^0.1",
"globby": "^10",
"rimraf": "^3.0.2",
"typescript": "^4.1.2"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/TheMrZZ/sandstone-cli",
"keywords": [
"sandstone",
"cli",
"command",
"line",
"interface",
"datapack",
"minecraft"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "sand",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-warn-if-update-available"
],
"warn-if-update-available": {
"timeoutInDays": 7,
"message": "<%= chalk.rgb(229,193,0)(config.name) %> has a new update available: <%= chalk.greenBright(latest) %> (current version: <%= chalk.greenBright(config.version) %>).\nUpdate with <%= chalk.gray('npm run update') %> or <%= chalk.gray('yarn update') %>."
}
},
"repository": "TheMrZZ/sandstone-cli",
"scripts": {
"postpack": "rimraf oclif.manifest.json",
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "rimraf lib && tsc -b && node ./copyTemplate.js && oclif-dev manifest && oclif-dev readme",
"test": "echo NO TESTS",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts"
}