This repository was archived by the owner on Feb 3, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.42 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
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@candriajs/karin-plugin-git-neko",
"version": "0.1.2",
"description": "关于一个Karin插件, 主要提供在BOT上对Github, Gitee, GitCode等Git平台操作",
"keywords": [
"karin-plugin",
"karin-plugin-git-neko"
],
"homepage": "https://github.com/CandriaJS/karin-plugin-git-neko",
"bugs": {
"url": "https://github.com/CandriaJS/karin-plugin-git-neko/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CandriaJS/karin-plugin-git-neko.git"
},
"license": "GNU General Public License v3.0",
"author": "CandriaJS",
"type": "module",
"main": "lib/index.js",
"files": [
"config/",
"lib/",
"resources/",
"LICENSE",
"package.json",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"app": "node --import tsx src/app.ts",
"build": "tsc --noEmit && tsup",
"dev": "cross-env EBV_FILE=\"development.env\" node --import tsx src/app.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"pub": "npm publish --access public",
"sort": "sort-package-json",
"watch": "cross-env EBV_FILE=\"development.env\" tsx watch --include \"src/**/*.ts\" src/app.ts"
},
"dependencies": {
"@candriajs/git-neko-kit": "https://pkg.pr.new/CandriaJS/git-neko-kit/@candriajs/git-neko-kit@fd19135",
"body-parser": "^2.2.0",
"express-art-template": "^1.0.1",
"markdown-it": "^14.1.0",
"markdown-it-emoji": "^3.0.0",
"sequelize": "^6.37.7"
},
"devDependencies": {
"@karinjs/plugin-puppeteer": "^1.0.17",
"@types/body-parser": "^1.19.5",
"@types/express": "^5.0.2",
"@types/lodash": "^4.17.16",
"@types/markdown-it": "^14.1.2",
"@types/markdown-it-emoji": "^3.0.1",
"@types/node": "^22.13.14",
"@typescript-eslint/parser": "^8.28.0",
"cross-env": "^7.0.3",
"eslint": "^9.23.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.15.0",
"neostandard": "^0.12.1",
"node-karin": "^1.10.6",
"tsc-alias": "^1.8.11",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"typescript-eslint": "^8.28.0"
},
"packageManager": "pnpm@9.13.2",
"karin": {
"main": "src/index.ts",
"apps": [
"lib/apps"
],
"ts-apps": [
"src/apps"
],
"static": [
"resources"
],
"files": [
"config",
"data",
"resources"
],
"web": "./lib/web.config.js",
"ts-web": "./src/web.config.ts"
}
}