-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.3 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.3 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
{
"name": "@ibbybuilds/discli",
"version": "0.6.2",
"description": "discli — Discord server management CLI. Control your servers from the terminal. Built for humans and AI agents.",
"type": "module",
"bin": {
"discli": "dist/cli.js"
},
"files": [
"dist",
"skills",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ibbybuilds/discli.git"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/cli.js",
"typecheck": "tsc --noEmit",
"test": "node --test test/*.test.js",
"release:patch": "npm run typecheck && npm run build && npm test && npm version patch && git push && git push --tags",
"release:minor": "npm run typecheck && npm run build && npm test && npm version minor && git push && git push --tags",
"release:major": "npm run typecheck && npm run build && npm test && npm version major && git push && git push --tags"
},
"keywords": [
"discord",
"cli",
"server",
"management",
"bot",
"agent"
],
"author": "ibbybuilds",
"license": "MIT",
"dependencies": {
"commander": "^13.1.0",
"yaml": "^2.8.2"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
}
}