-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.72 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
75
76
77
78
{
"name": "karin-plugin-orchid",
"version": "1.0.4",
"author": "ikechan8370",
"type": "module",
"main": "lib/index.js",
"description": "karin plugin for orchid",
"homepage": "https://github.com/ikechan8370/karin-plugin-orchid",
"bugs": {
"url": "https://github.com/ikechan8370/karin-plugin-orchid/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ikechan8370/karin-plugin-orchid.git"
},
"scripts": {
"build": "tsc --project tsconfig.json && tsc-alias -p tsconfig.json",
"pub": "npm publish --access public",
"sort": "npx sort-package-json",
"dev": "tsx src/index.ts",
"karin": "karin",
"app": "karin app",
"start": "karin start",
"pm2": "karin pm2",
"stop": "karin stop",
"rs": "karin rs",
"log": "karin log",
"up": "karin up",
"ts": "karin ts",
"watch": "karin watch"
},
"dependencies": {
"https-proxy-agent": "^7.0.5",
"jimp": "^0.22.12",
"jsqr": "^1.4.0",
"node-fetch": "^3.3.2",
"otplib": "^12.0.1",
"rss-parser": "^3.13.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/node": "^20.17.8",
"@types/xml2js": "^0.4.14",
"neostandard": "^0.12.0",
"node-karin": "^1.3.15",
"tsc-alias": "^1.8.10",
"tsx": "^4.19.2",
"typescript": "^5.5.3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"karin": {
"main": "src/index.ts",
"apps": [
"lib/apps"
],
"ts-apps": [
"src/apps"
],
"static": [
"resources"
],
"files": [
"config",
"data",
"resources"
],
"include": [
"src/**/*"
],
"exclude": [
"lib/**/*",
"@karinjs/**/*"
]
}
}