-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.28 KB
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
{
"name": "pzpw",
"version": "2.0.2-alpha",
"description": "Node command-line tool to manage PZPW projects.",
"main": "./dist/lib/cli.js",
"type": "module",
"bin": {
"pzpw": "./dist/index.js"
},
"types": "./dts",
"scripts": {
"clean": "del-cli --force ./dist ./dts",
"lint": "eslint ./src",
"build": "npm run clean && tsc",
"watch": "npm run clean && tsc --watch"
},
"author": "Konijima",
"contributors": [
"JabDoesThings"
],
"license": "Apache License Version 2.0",
"funding": {
"type": "paypal",
"url": "https://paypal.me/Konijima"
},
"homepage": "https://github.com/Konijima/pzpw#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Konijima/pzpw.git"
},
"bugs": {
"url": "https://github.com/Konijima/pzpw/issues"
},
"keywords": [
"pzpw",
"pipewrench",
"typescript",
"project-zomboid"
],
"dependencies": {
"chalk": "^5.0.1",
"prompt": "^1.3.0",
"shelljs": "^0.8.5",
"pzpw-config-schema": "^1.0.2"
},
"devDependencies": {
"@types/node": "^18.7.5",
"@types/shelljs": "^0.8.11",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"del-cli": "^4.0.1",
"typescript": "^5.3.3"
}
}