-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.71 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
68
69
70
71
72
{
"name": "karin-plugin-kkk",
"version": "0.1.9",
"description": "a Karin video parsing tool",
"keywords": [
"karin-plugin"
],
"homepage": "https://github.com/ikenxuan/karin-plugin-kkk",
"bugs": {
"url": "https://github.com/ikenxuan/karin-plugin-kkk/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ikenxuan/karin-plugin-kkk.git"
},
"license": "GPL-3.0-only",
"author": "ikenxuan",
"type": "module",
"main": "lib/index.js",
"files": [
"config/",
"lib/",
"resources/",
"LICENSE",
"package.json",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc --project tsconfig.json && tsc-alias -p tsconfig.json",
"clean": "node lib/clean.js",
"fix": "eslint src/**/*.ts --fix",
"pub": "npm publish --access public",
"sort": "npx sort-package-json"
},
"dependencies": {
"@ikenxuan/amagi": "^4.0.3",
"@karinjs/md-html": "^1.1.6",
"axios": "^1.7.8",
"heic-convert": "^2.1.0",
"icqq": "^0.6.10",
"playwright": "^1.49.0",
"qrcode": "^1.5.4",
"sequelize": "6.37.3",
"sqlite3": "5.1.6"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/heic-convert": "^2.1.0",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.0",
"@types/qrcode": "^1.5.5",
"eslint": "^9.15.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.12.0",
"sort-package-json": "^2.12.0",
"tsc-alias": "^1.8.10",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"karin": {
"apps": [
"lib/apps"
],
"outDir": "lib",
"rootDir": "src"
}
}