-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.34 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
59
60
61
{
"name": "pupbot",
"version": "1.1.1",
"description": "PupBot 命令行工具",
"homepage": "https://pupbot.cn/",
"bin": {
"pup": "bin/pup"
},
"files": [
"bin",
"lib",
"LICENSE"
],
"keywords": [
"bot",
"cli",
"oicq",
"pupbot"
],
"engines": {
"node": ">= v14"
},
"author": "dogxi",
"license": "MIT",
"devDependencies": {
"@pupbot/core": "latest",
"@types/fs-extra": "^9.0.13",
"@types/minimist": "^1.2.2",
"@types/node": "^18.11.9",
"@types/prompts": "^2.4.1",
"concurrently": "^7.5.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-viki-ts": "^0.1.1",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"tsc-alias": "^1.7.1",
"typescript": "^4.9.3"
},
"dependencies": {
"axios": "^1.2.1",
"fast-glob": "^3.2.12",
"fs-extra": "^10.1.0",
"minimist": "^1.2.7",
"npm-check-updates": "^16.5.0",
"ora": "^5",
"prompts": "^2.4.2",
"rimraf": "^3.0.2"
},
"scripts": {
"dev": "rimraf lib && tsc && concurrently \"tsc -w\" \"tsc-alias -w\"",
"build": "rimraf lib && tsc && tsc-alias",
"lint": "eslint . --ext .ts,js",
"lint:fix": "eslint . --ext .ts,js --fix",
"release": "pnpm run build && pnpm publish"
},
"main": "index.js",
"directories": {
"lib": "lib"
}
}