-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.44 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.44 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
{
"name": "@karinjs/plugin-basic",
"version": "1.4.4",
"description": "Karin的基础插件,提供最基础的功能",
"homepage": "https://github.com/KarinJS/karin-plugin-basic",
"bugs": {
"url": "https://github.com/KarinJS/karin-plugin-basic/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KarinJS/karin-plugin-basic.git"
},
"author": "shijin",
"type": "module",
"main": "dist/index.js",
"files": [
"dist",
"config",
"resources",
"LICENSE",
"package.json",
"README.md"
],
"scripts": {
"build": "tsc && tsup",
"pub": "npm publish --access public",
"sort": "npx sort-package-json",
"dev": "tsx src/app.ts",
"watch": "tsx watch src/index.ts",
"karin": "karin"
},
"devDependencies": {
"@karinjs/plugin-puppeteer": "^1.1.2",
"@types/node": "^25.2.3",
"eslint": "^9.39.2",
"neostandard": "^0.12.2",
"node-karin": "^1.14.3",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"karin": {
"main": "src/index.ts",
"apps": [
"dist/apps"
],
"ts-apps": [
"src/apps"
],
"static": [
"resources"
],
"files": [
"config"
],
"ts-web": "src/web.config.ts",
"web": "dist/web.config.js"
},
"dependencies": {
"internal-ip": "^9.0.0",
"node-cron": "^4.2.1"
}
}