-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 868 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 868 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
{
"name": "pterowrap",
"version": "1.1.7",
"homepage": "https://github.com/Iru21/pterowrap",
"repository": "https://github.com/Iru21/pterowrap",
"description": "A node.js wrapper for Pterodactyl API",
"keywords": [
"pterodactyl",
"pterodactyl api",
"ptero",
"wrapper"
],
"main": "./dist/index.js",
"scripts": {
"clear-dist": "rmdir /s /q dist",
"build": "tsc",
"publishnpm": "npm run clear-dist && npm run build && npm publish",
"test": "ts-node ./lib/test.ts"
},
"author": "Iru21",
"license": "GPL-3.0 License",
"devDependencies": {
"@types/node": "^16.7.6",
"dotenv": "^10.0.0",
"nodemon": "^2.0.12",
"ts-node": "^10.4.0",
"typescript": "^4.3.5"
},
"dependencies": {
"axios": "^0.21.2"
}
}