-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 959 Bytes
/
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
{
"name": "@magikcraft/regenerate-spawn",
"version": "0.0.4",
"main": "lib/index.ts",
"scripts": {
"test": "smac start -t -e",
"start": "tsc && concurrently --success first --handle-input \"smac start\" \"tsc -w\"",
"start:nukkit": "tsc && concurrently --success first --handle-input \"smac start -f smac-nukkit.json\" \"tsc -w\"",
"start:bukkit": "tsc && concurrently --success first --handle-input \"smac start\" \"tsc -w\""
},
"smaPluginConfig": {
"scriptcraft_load_dir": "autoload"
},
"husky": {
"hooks": {
"pre-commit": "tsc && lint-staged"
}
},
"lint-staged": {
"*.{ts,json,css,md}": [
"prettier --write",
"tsc",
"git add"
]
},
"devDependencies": {
"@magikcraft/op-all": "^1.0.0",
"@scriptcraft/types": "^1.1.16",
"@types/jasmine": "^3.3.13",
"concurrently": "^4.1.1",
"husky": "^3.0.0",
"lint-staged": "^9.2.0",
"prettier": "^1.18.2"
},
"dependencies": {
"@magikcraft/commando": "0.0.5"
}
}