-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.24 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
{
"name": "karin-plugin-template-ts",
"version": "1.0.0",
"author": "Lain",
"type": "module",
"description": "karin plugin template",
"homepage": "https://github.com/KarinJS/karin-plugin-template-ts",
"bugs": {
"url": "https://github.com/KarinJS/karin-plugin-template-ts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KarinJS/karin-plugin-template-ts.git"
},
"scripts": {
"build": "tsc --project tsconfig.json && tsc-alias -p tsconfig.json",
"pub": "npm publish --access public"
},
"main": "lib/index.js",
"devDependencies": {
"@types/node": "^20.17.8",
"eslint": "^9.7.0",
"neostandard": "^0.11.9",
"node-karin": "0.12.25-beta.pr.194.1-1732881372",
"tsc-alias": "^1.8.10",
"tsx": "^4.19.2",
"typescript": "^5.5.3"
},
"karin": {
"apps": [
"lib/apps"
],
"ts-apps": [
"src/apps"
],
"static": [
"resources"
],
"files": [
"config",
"data",
"resources"
]
},
"files": [
"/lib/**/*.js",
"/lib/**/*.d.ts",
"/config/*.yaml",
"resources",
"LICENSE",
"package.json",
"README.md"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}