-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.78 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
{
"name": "rich-piping-server",
"version": "0.6.0",
"description": "Rich Piping Server",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": {
"rich-piping-server": "dist/src/index.js"
},
"scripts": {
"build": "tsc",
"start": "npm run build && node dist/src/index.js",
"prepare": "npm run build",
"test": "mocha --require ts-node/register test/**/*.test.ts"
},
"keywords": [
"piping server"
],
"repository": {
"type": "git",
"url": "https://github.com/nwtgck/rich-piping-server"
},
"author": "Ryo Ota <[email protected]> (https://github.com/nwtgck)",
"license": "MIT",
"devDependencies": {
"@types/basic-auth": "^1.1.8",
"@types/cookie": "^0.6.0",
"@types/js-yaml": "^4.0.9",
"@types/koa-router": "^7.4.8",
"@types/mocha": "^10.0.6",
"@types/node": "^18.16.13",
"@types/node-jose": "^1.1.13",
"@types/oidc-provider": "^8.4.4",
"@types/power-assert": "^1.5.12",
"@types/tough-cookie": "^4.0.5",
"@types/useragent": "^2.3.4",
"@types/yargs": "^17.0.32",
"axios": "^1.7.2",
"axios-cookiejar-support": "^5.0.2",
"get-port": "^5.1.1",
"koa-body": "^6.0.1",
"koa-router": "^12.0.1",
"mocha": "^10.4.0",
"node-jose": "^2.2.0",
"oidc-provider": "^8.4.6",
"pkg": "^5.8.1",
"power-assert": "^1.6.1",
"tough-cookie": "^4.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"undici": "^5.28.2"
},
"dependencies": {
"basic-auth": "^2.0.1",
"cookie": "^0.6.0",
"dotenv": "^16.4.1",
"js-yaml": "^4.1.0",
"log4js": "^6.9.1",
"openid-client": "^5.6.5",
"piping-server": "^1.12.9",
"preact": "^10.22.0",
"preact-render-to-string": "^6.4.2",
"useragent": "^2.3.0",
"yargs": "^17.7.2",
"zod": "^3.22.5"
}
}