-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 1.27 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
{
"name": "pzstudio",
"version": "2.2.0",
"description": "",
"main": "./dist/index.js",
"type": "commonjs",
"bin": {
"pzstudio": "./dist/index.js"
},
"publishConfig": {
"tag": "latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Konijima/project-zomboid-studio.git"
},
"bugs": {
"url": "https://github.com/Konijima/project-zomboid-studio/issues"
},
"author": "Konijima",
"contributors": [
{
"name": "asledgehammer",
"url": "https://github.com/asledgehammer"
},
{
"name": "demiurgeQuantified",
"url": "https://github.com/demiurgeQuantified"
}
],
"funding": [
{
"type": "ko-fi",
"url": "https://ko-fi.com/konijima"
}
],
"license": "Apache License Version 2.0",
"scripts": {
"clean": "del-cli --force ./dist",
"build": "npm run clean && tsc",
"watch": "npm run clean && tsc --watch"
},
"keywords": [
"pzstudio",
"modding-tool",
"project-zomboid",
"project-zomboid-studio"
],
"devDependencies": {
"@types/node": "^18.7.5",
"@types/terminal-kit": "^2.5.1"
},
"dependencies": {
"chokidar": "^3.5.3",
"del-cli": "^4.0.1",
"download": "^8.0.0",
"terminal-kit": "^3.0.0",
"typescript": "^5.0.4"
}
}