-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.69 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.69 KB
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
68
69
70
71
72
73
74
{
"name": "@karinjs/plugin-adapter-milky",
"version": "1.2.5",
"license": "MIT",
"author": "KarinJS",
"type": "module",
"keywords": [
"karin-plugin",
"karin-adapter"
],
"description": "基于Karin的milky协议适配器",
"homepage": "https://github.com/KarinJS/karin-plugin-adapter-milky",
"repository": {
"type": "git",
"url": "git+https://github.com/KarinJS/karin-plugin-adapter-milky.git"
},
"scripts": {
"app": "node lib/app.js",
"build": "tsup",
"dev": "cross-env EBV_FILE=\"development.env\" node --import tsx src/app.ts"
},
"main": "lib/index.js",
"devDependencies": {
"@karinjs/plugin-basic": "^1.4.4",
"@karinjs/plugin-puppeteer": "^2.0.2",
"@saltify/milky-types": "1.2.2",
"@types/express": "^5.0.6",
"@types/lodash": "^4.17.23",
"@types/node": "^25.0.6",
"@types/ws": "^8.18.1",
"@ys7zts/karin-plugin-nekostatus": "^1.4.0",
"cross-env": "^10.1.0",
"eslint": "^9.39.4",
"jiti": "^2.6.1",
"karin-plugin-ling": "^1.32.2",
"neostandard": "^0.12.2",
"node-karin": "^1.15.3",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
},
"karin": {
"main": "src/index.ts",
"web": "lib/web.config.js",
"ts-web": "src/web.config.ts",
"apps": [
"lib/apps"
],
"ts-apps": [
"src/apps"
],
"static": [
"resources"
],
"files": [
"config"
]
},
"files": [
"/lib/**/*.js",
"/lib/**/*.d.ts",
"/config/*.json",
"resources",
"!lib/app.js"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"eventsource": "^4.1.0",
"ws": "^8.19.0"
}
}