-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 964 Bytes
/
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
{
"name": "karin-plugin-template",
"version": "0.0.1",
"description": "karin plugin template",
"homepage": "https://github.com/KarinJS/karin-plugin-template",
"bugs": {
"url": "https://github.com/KarinJS/karin-plugin-template/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KarinJS/karin-plugin-template.git"
},
"author": "Lain",
"type": "module",
"main": "lib/index.js",
"scripts": {
"app": "karin start",
"dev": "karin dev",
"init": "karin init",
"start": "karin start"
},
"devDependencies": {
"neostandard": "^0.12.0"
},
"peerDependencies": {
"node-karin": "0.12.25-beta.pr.206.1-1734707881"
},
"karin": {
"apps": [
"lib/apps"
],
"static": [
"resources"
],
"files": [
"config",
"data",
"resources"
],
"include": [
"src/**/*"
],
"exclude": [
"lib/**/*",
"@karinjs/**/*"
]
}
}