-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.75 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.75 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
{
"name": "create-chatluna-plugin",
"version": "1.0.10",
"type": "module",
"description": "Create ChatLuna plugin for Koishi",
"author": "ChatLuna Contributors",
"license": "MIT",
"bin": "./bin.mjs",
"main": "./lib/index.mjs",
"files": [
"lib",
"src",
"resources",
"bin.cjs"
],
"scripts": {
"build": "yarn yakumo build",
"bump": "yarn yakumo version",
"dep": "yarn yakumo upgrade",
"pub": "yarn yakumo publish",
"lint": "yarn eslint src --ext=ts",
"lint-fix": "yarn eslint src --ext=ts --fix"
},
"dependencies": {
"kleur": "^4.1.5",
"os-locale": "^6.0.2",
"prompts": "^2.4.2",
"which-pm-runs": "^1.1.0",
"yargs-parser": "^21.1.1"
},
"devDependencies": {
"@types/prompts": "^2.4.9",
"@types/which-pm-runs": "^1.0.2",
"@types/yargs-parser": "^21.0.3",
"@typescript-eslint/eslint-plugin": "^7.18.1-alpha.3",
"@typescript-eslint/parser": "^8.45.1-alpha.0",
"atsc": "^1.2.2",
"esbuild": "^0.25.10",
"esbuild-register": "npm:@shigma/esbuild-register@^1.1.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-promise": "^7.2.1",
"yakumo": "^1.0.0",
"yakumo-esbuild": "^1.0.0",
"yakumo-mocha": "^1.0.0",
"yakumo-tsc": "^1.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"koishi",
"chatluna",
"plugin",
"scaffold",
"template"
]
}