-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.43 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
{
"name": "nightbot-pk-proxy",
"version": "1.0.0",
"description": "Updates a Nightbot command to show the current fronter as registered in PluralKit.",
"main": "build/main.js",
"scripts": {
"build": "tsc -P tsconfig.json",
"build:watch": "tsc -P tsconfig.json --watch",
"clean": "rimraf build",
"start": "node .",
"start:dev": "npm run clean && concurrently \"npm run build:watch\" \"npm run start:watch\"",
"start:watch": "nodemon build/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheAppleFreak/nightbot-pk-proxy.git"
},
"author": "TheAppleFreak <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheAppleFreak/nightbot-pk-proxy/issues"
},
"homepage": "https://github.com/TheAppleFreak/nightbot-pk-proxy#readme",
"devDependencies": {
"@types/dotenv-defaults": "^2.0.1",
"@types/koa": "^2.13.8",
"@types/koa-bodyparser": "^4.3.10",
"@types/node": "^20.6.0",
"@types/qs": "^6.9.8",
"@types/ssh2": "^1.11.13",
"concurrently": "^8.2.1",
"nodemon": "^3.0.1",
"rimraf": "^5.0.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"dependencies": {
"axios": "^1.5.0",
"dayjs": "^1.11.9",
"dotenv": "^16.3.1",
"env-var": "^7.4.1",
"flatted": "^3.2.7",
"koa": "^2.14.2",
"koa-bodyparser": "^4.4.1",
"qs": "^6.11.2",
"ssh2": "^1.14.0",
"winston": "^3.10.0"
}
}