-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.57 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
{
"name": "pteroly",
"version": "1.10.2",
"description": "A fast typescript Node.JS API wrapper for the Pterodactyl Panel working with the latest version and with lots of features",
"main": "lib/pteroly.js",
"types": "lib/pteroly.d.ts",
"funding": "https://paypal.me/PureNodes",
"scripts": {
"build": "tsc",
"buildandcopylx": "tsc && cp ./src/config.cfg ./lib/config.cfg",
"buildandcopywin": "tsc && copy .\\src\\config.cfg .\\lib\\config.cfg",
"start": "tsc && cd ./lib && node pteroly.js",
"lint": "eslint . --ext .ts",
"test": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FyreBlitz/pteroly.git"
},
"keywords": [
"api",
"wrapper",
"pterodactyl",
"panel",
"node.js",
"nodejs",
"typescript",
"javascript",
"latest",
"updated",
"fast"
],
"author": "OnFire124",
"license": "MIT",
"bugs": {
"url": "https://github.com/FyreBlitz/pteroly/issues"
},
"homepage": "https://pteroly.fyreblitz.com/",
"dependencies": {
"@types/node": "^18.11.9",
"@types/ws": "^8.5.3",
"axios": "^0.26.1",
"follow-redirects": "^1.14.9",
"fs": "^0.0.1-security",
"node-fetch": "^3.3.0",
"node-ts-cache": "^4.4.0",
"node-ts-cache-storage-memory": "^4.4.0",
"ws": "^8.11.0"
},
"devDependencies": {
"@types/mocha": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^8.18.0",
"mocha": "^10.0.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.4.0",
"typescript": "^4.6.2"
}
}