-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
68 lines (68 loc) · 1.55 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
{
"name": "@devnote-dev/pterojs",
"version": "2.2.2",
"description": "A verbose API library for Pterodactyl",
"author": "Devonte <https://github.com/devnote-dev>",
"contributors": [
"Chelog <https://github.com/chelog>",
"Cain <https://github.com/cainthebest>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/PteroPackages/PteroJS/issues"
},
"homepage": "https://pteropackages.github.io/PteroJS/",
"repository": {
"type": "git",
"url": "git+https://github.com/PteroPackages/PteroJS.git"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"node": "./dist/index.js"
},
"files": [
"dist",
"CHANGELOG.md",
"LICENSE",
"pterojs.json",
"README.md"
],
"engines": {
"node": ">=14.16"
},
"scripts": {
"prepublishOnly": "tsup",
"prepublish": "npm run build",
"build": "tsup",
"docs": "typedoc --out docs --excludePrivate src/index.ts",
"format": "prettier --write **/**.{js,ts}"
},
"keywords": [
"api",
"nodejs",
"library",
"wrapper",
"javascript",
"typescript",
"pterodactyl",
"pterodactyl-api"
],
"dependencies": {
"axios": "^0.27.2",
"form-data": "^4.0.0",
"ws": "^8.8.1"
},
"devDependencies": {
"@types/node": "^17.0.45",
"@types/ws": "^8.5.3",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"tsup": "^6.3.0",
"typedoc": "^0.22.18"
}
}