-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 934 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 934 Bytes
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
{
"name": "paldefender-rest-client",
"version": "0.1.6",
"description": "TypeScript API Wrapper for the PalDefender REST API.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "vitest",
"prepublishOnly": "npm run build",
"postinstall": "node -e \"console.log('\\x1b[36mNote: This is a PalDefender Beta client. Check for breaking changes at the GitHub repo.\\x1b[0m')\""
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"paldefender",
"palworld",
"rest",
"api",
"client"
],
"author": "GlitchApotamus",
"license": "MIT",
"type": "module",
"devDependencies": {
"@types/node": "^25.6.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"dependencies": {
"axios": "^1.15.2"
},
"homepage": "https://github.com/PalLink/PD-REST-TypeScript",
"maintainers": [
"GlitchApotamus"
]
}