-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 993 Bytes
/
package.json
File metadata and controls
49 lines (49 loc) · 993 Bytes
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
{
"name": "sladm-cli",
"version": "0.5.1",
"description": "Slack Admin CLI for humans and AI agents — manage Enterprise Grid via admin.* APIs",
"type": "module",
"bin": {
"sladm": "./src/index.ts"
},
"scripts": {
"dev": "bun run src/index.ts",
"test": "bun test",
"lint": "bunx tsc --noEmit"
},
"files": [
"src/**/*.ts",
"skills/**/*",
".claude-plugin/**/*",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/yamitzky/slack-admin-cli.git"
},
"keywords": [
"slack",
"slack-admin",
"enterprise-grid",
"cli",
"agent-skill"
],
"author": "Mitsuki Ogasahara",
"license": "MIT",
"engines": {
"bun": ">=1.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@optique/core": "latest",
"@optique/run": "latest",
"@slack/web-api": "latest"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "latest"
}
}