-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
76 lines (76 loc) · 1.55 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@magikcraft/core",
"version": "0.2.0",
"description": "Magikcraft core library for SMA plugins",
"homepage": "https://www.magikcraft.io",
"author": {
"name": "Josh Wulf",
"email": "[email protected]",
"url": "https://github.com/Magikcraft"
},
"main": "lib/index.js",
"keywords": [
"scriptcraft",
"magikcraft",
"minecraft"
],
"devDependencies": {
"@magikcraft/op-all": "^1.0.0",
"@scriptcraft/types": "^1.3.2",
"@types/jasmine": "^3.3.12",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"typedoc": "^0.14.2"
},
"smaPluginConfig": {
"scriptcraft_autoload_dir": "autoload"
},
"smaServerConfig": {
"port": "25565",
"serverName": "magikcraft-core-dev",
"test": true,
"dockerTag": "latest",
"bind": [
{
"src": "./",
"dst": "scriptcraft-plugins/@magikcraft/core/"
}
],
"worlds": [
{
"downloadUrl": "https://sitapatis-sydney-storage.s3.amazonaws.com/MCT1/mct1-worlds-0.1.1.zip",
"version": "0.1.1",
"name": "mct1"
}
]
},
"husky": {
"hooks": {
"pre-commit": "tsc && lint-staged"
}
},
"lint-staged": {
"*.{ts,json,css,md},!*.d.ts": [
"prettier --write",
"git add"
],
"*.js": [
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"scripts": {
"test": "tsc && smac start -t -e",
"start": "tsc -w",
"docs": "typedoc --out ./docs --tsconfig ./tsconfig.json --excludePrivate --excludeNotExported --mode file"
},
"repository": "Magikcraft/core",
"license": "Apache-2.0",
"dependencies": {
"typescript": "^3.7.3"
}
}