-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 942 Bytes
/
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
{
"name": "@sigmathefox/palwrapper",
"version": "1.0.4",
"description": "A wrapper for Palworld's REST API",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "npx tsc",
"test": "node ./test.js"
},
"keywords": [
"palworld",
"wrapper",
"API",
"REST",
"game"
],
"author": "SigmaTheFox",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.12.4",
"typedoc": "^0.25.12",
"typescript": "^5.4.3"
},
"repository": {
"type": "git",
"url": "https://github.com/SigmaTheFox/PalWrapper"
},
"homepage": "https://palwrapper.sigmathefox.com",
"funding": [
{
"type": "individual",
"url": "https://paypal.me/sigmathefox"
},
{
"type": "individual",
"url": "https://ko-fi.com/sigmathefox"
},
{
"type": "individual",
"url": "https://github.com/sponsors/SigmaTheFox"
}
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
}
}