-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.02 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
{
"name": "jurassic-bridge",
"module": "src/index.ts",
"type": "module",
"version": "0.3.0",
"license": "MIT",
"author": {
"name": "Guillaume FINE",
"email": "[email protected]"
},
"keywords": [
"pterodactyl",
"pterodactyl panel",
"pterodactyl-panel",
"ptero"
],
"repository": {
"type": "git",
"url": "https://github.com/Cosmeak/jurassic-bridge"
},
"devDependencies": {
"@types/node": "^20.8.6",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"eslint": "^8.51.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.1.1",
"typescript": "^5.2.2",
"jest": "^29.7.0"
},
"scripts": {
"watch": "tsc -w",
"build": "tsc",
"test": "mocha",
"lint": "eslint src/"
},
"dependencies": {
"node-fetch": "^3.3.2"
}
}