-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.54 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
{
"name": "pzpw-template",
"version": "2.0.2",
"description": "Main template used by PZPW when setting up a new project.",
"main": "",
"types": "./declaration",
"scripts": {
"[ GITHUB COMMANDS ]": "",
"test-build": "tsc --p build.tsconfig.json",
"[ INSTALL COMMANDS ]": "",
"install-compiler": "echo \n\nTo install PZPW Compiler run this command in your terminal:\n npm install -g pzpw-compiler\n\n",
"update-compiler": "pzpw-compiler update",
"[ COMPILER COMMANDS ]": "",
"compile-mods": "pzpw-compiler mods",
"compile-workshop": "pzpw-compiler workshop",
"[ CLEANUP COMMANDS ]": "",
"clean-all": "npm run clean-project && pzpw-compiler clean all",
"clean-project": "del-cli --force ./dist ./workshop ./declaration",
"clean-cachedir-mods": "pzpw-compiler clean mods",
"clean-cachedir-workshop": "pzpw-compiler clean workshop"
},
"author": "Konijima",
"license": "MIT",
"homepage": "https://github.com/Konijima/pzpw-template",
"repository": {
"type": "git",
"url": "git+https://github.com/Konijima/pzpw-template.git"
},
"bugs": {
"url": "https://github.com/Konijima/pzpw-template/issues"
},
"keywords": [
"pzpw",
"compiler",
"pipewrench",
"typescript",
"project-zomboid"
],
"dependencies": {
"@asledgehammer/pipewrench": "latest",
"@asledgehammer/pipewrench-events": "latest",
"@typescript-to-lua/language-extensions": "latest"
},
"devDependencies": {
"del-cli": "latest",
"lua-types": "latest",
"typescript": "latest"
}
}