This repository has been archived by the owner on Aug 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.8 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
{
"name": "@misaka/server",
"version": "1.0.0",
"description": "Misaka Server",
"main": "src/misaka.ts",
"type": "module",
"author": "cloudwindy",
"license": "UNLICENSED",
"private": true,
"keywords": [],
"scripts": {
"test": "echo Error: no test specified && exit 1",
"start": "sudo node --use-strict --experimental-specifier-resolution=node --loader=ts-node/esm . start",
"dist-install": "./distinstall.sh"
},
"dependencies": {
"@misaka/app": "link:modules/app",
"@misaka/echo": "link:modules/echo",
"@misaka/proxy": "link:modules/proxy",
"@misaka/router": "link:modules/router",
"@misaka/static": "link:modules/static",
"@misaka/util": "link:modules/util",
"chalk": "^5.0.1",
"filesize": "^8.0.7",
"geoip-lite": "^1.4.4",
"http-status-codes": "^2.2.0",
"ioredis": "^4.28.5",
"koa": "^2.13.4",
"koa-compress": "^5.1.0",
"koa-conditional-get": "^3.0.0",
"koa-etag": "^4.0.0",
"koa-helmet": "^6.1.0",
"koa-ratelimit": "^5.0.1",
"useragent": "^2.3.0",
"utf8": "^3.0.0",
"webpack": "^5.0.0",
"ws": "^8.5.0",
"yaml": "^2.0.0-11",
"yargs": "^17.4.0"
},
"devDependencies": {
"@types/geoip-lite": "^1.4.1",
"@types/ioredis": "^4.28.10",
"@types/koa-compress": "^4.0.3",
"@types/koa-conditional-get": "^2.0.0",
"@types/koa-etag": "^3.0.0",
"@types/koa-ratelimit": "^4.2.4",
"@types/koa-session": "^5.10.6",
"@types/node": "^17.0.23",
"@types/useragent": "^2.3.1",
"@types/utf8": "^3.0.1",
"@types/ws": "^8.5.3",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"koa-session": "^6.2.0",
"ts-loader": "^9.2.8",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}