-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 1.63 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@devnote-dev/pterojslite",
"version": "1.1.0",
"description": "A lightweight version of the PteroJS package",
"author": "Devonte W <https://github.com/devnote-dev>",
"license": "MIT",
"bugs": {
"url": "https://github.com/PteroPackages/PteroJSLite/issues"
},
"homepage": "https://github.com/PteroPackages/PteroJSLite#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/PteroPackages/PteroJSLite.git"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
},
"files": [
"dist",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=14.16"
},
"scripts": {
"prepublish": "tsup",
"build": "tsup",
"docs": "typedoc --out docs src/index.ts",
"format": "prettier --write src/**/**.ts"
},
"prettier": {
"arrowParens": "avoid",
"bracketSpacing": true,
"singleQuote": true,
"tabWidth": 4
},
"tsup": {
"bundle": true,
"clean": true,
"dts": true,
"entryPoints": [
"src/index.ts"
],
"format": [
"cjs",
"esm"
],
"target": "esnext"
},
"keywords": [
"api",
"nodejs",
"pterojs",
"wrapper",
"javascript",
"typescript",
"pterojslite",
"pterodactyl",
"pterodactyl-api"
],
"dependencies": {
"axios": "^0.27.2",
"ws": "^8.11.0"
},
"devDependencies": {
"@types/node": "^18.6.4",
"@types/ws": "^8.5.3",
"prettier": "^2.7.1",
"tsup": "^6.3.0",
"typedoc": "^0.23.19",
"typescript": "^4.8.4"
}
}