-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.7 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": "pzpw-template",
"version": "1.0.0",
"description": "Main template used by PZPW when setting up a new project.",
"main": "",
"scripts": {
"clean": "del-cli --force ./dist ./workshop ./declaration",
"build-compiler": "tsc --project ./.compiler/",
"compile-distribution": "node ./.compiler/compiler.js distribution",
"compile-development": "node ./.compiler/compiler.js development",
"compile-declaration": "node ./.compiler/compiler.js declaration",
"compile-workshop": "node ./.compiler/compiler.js workshop",
"clean-distribution": "node ./.compiler/compiler.js clean-distribution",
"clean-workshop": "node ./.compiler/compiler.js clean-workshop"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Konijima/PipeWrenchTemplate.git"
},
"keywords": [
"Project Zomboid",
"asledgehammer",
"PipeWrench",
"Modding Framework"
],
"author": "asledgehammer",
"contributors": [
"Konijima",
"Zed"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/Konijima/PipeWrenchTemplate/issues"
},
"homepage": "https://github.com/Konijima/PipeWrenchTemplate",
"dependencies": {
"PipeWrench": "github:Konijima/pzpw-pipewrench#stable",
"PipeWrench-Events": "github:Konijima/pzpw-pipewrench-events#stable",
"PipeWrench-Utils": "github:Konijima/pzpw-pipewrench-utils#stable"
},
"devDependencies": {
"ansi": "^0.3.1",
"chokidar": "^3.5.3",
"colors": "^1.4.0",
"del-cli": "^4.0.1",
"lua-types": "^2.11.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.2",
"typescript-to-lua": "^1.4.2"
},
"types": "./",
"typesVersions": {
">=4.6": {
"*": [
"ts4.6/*"
]
}
}
}