-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
94 lines (94 loc) · 2.21 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "botops",
"type": "module",
"version": "0.0.13",
"packageManager": "[email protected]",
"description": "📦A modern cli tool that deploy chatbot fast,supporting Feishu, DingTalk, Discord, and Slack.",
"author": "river <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/ConnectAI-E/botops#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ConnectAI-E/botops.git"
},
"bugs": "https://github.com/ConnectAI-E/botops/issues",
"keywords": [
"feishu",
"dingtalk",
"discord",
"chatbot",
"slack",
"cli",
"botops"
],
"sideEffects": false,
"main": "dist/index.mjs",
"bin": {
"botops": "./botops-cli.mjs"
},
"pkg": {
"targets": [
"node16-macos-arm64"
],
"outputPath": "package"
},
"files": [
"dist",
"*.mjs"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "eslint .",
"fix:lint": "npm run lint -- --fix",
"prepublishOnly": "nr build",
"release": "bumpp && npm publish",
"start": "esno src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@inquirer/confirm": "^2.0.15",
"@inquirer/select": "^1.3.1",
"ajv": "^8.12.0",
"botops-feishu": "latest",
"clipboardy": "^4.0.0",
"conf": "^12.0.0",
"fast-glob": "^3.3.1",
"fs-extra": "^11.1.1",
"json-colorizer": "^2.2.2",
"listr": "^0.14.3",
"node-fetch": "^3.3.2",
"ora": "^8.0.1",
"picocolors": "^1.0.0",
"prompts": "^2.4.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.4",
"@antfu/ni": "^0.21.3",
"@antfu/utils": "^0.7.4",
"@types/fs-extra": "^11.0.1",
"@types/listr": "^0.14.9",
"@types/node": "^18.16.16",
"@types/prompts": "^2.4.4",
"@types/yargs": "^17.0.24",
"bumpp": "^9.1.0",
"eslint": "^8.41.0",
"esno": "^0.16.3",
"lint-staged": "^13.2.2",
"pnpm": "^8.6.0",
"rimraf": "^5.0.1",
"simple-git-hooks": "^2.8.1",
"typescript": "^5.0.4",
"unbuild": "^1.2.1",
"vite": "^4.3.9",
"vitest": "^1.6.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}