agent-slack 0.2.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +247 -0
- package/bin/agent-slack.js +2 -0
- package/dist/index.js +3706 -0
- package/dist/index.js.map +52 -0
- package/package.json +64 -0
package/package.json
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "agent-slack",
|
|
3
|
+
"version": "0.2.12",
|
|
4
|
+
"description": "Slack automation CLI for AI agents",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/stablyai/agent-slack.git"
|
|
9
|
+
},
|
|
10
|
+
"type": "module",
|
|
11
|
+
"bin": {
|
|
12
|
+
"agent-slack": "./bin/agent-slack.js"
|
|
13
|
+
},
|
|
14
|
+
"files": [
|
|
15
|
+
"dist",
|
|
16
|
+
"bin/agent-slack.js",
|
|
17
|
+
"README.md",
|
|
18
|
+
"LICENSE"
|
|
19
|
+
],
|
|
20
|
+
"publishConfig": {
|
|
21
|
+
"access": "public"
|
|
22
|
+
},
|
|
23
|
+
"scripts": {
|
|
24
|
+
"clean": "rm -rf dist",
|
|
25
|
+
"build": "bun build src/index.ts --outdir dist --target=bun --sourcemap",
|
|
26
|
+
"build:npm": "bun build src/index.ts --outdir dist --target=node --packages=external --external bun:sqlite --external node:sqlite --sourcemap",
|
|
27
|
+
"dev": "bun run src/index.ts",
|
|
28
|
+
"prepare": "simple-git-hooks",
|
|
29
|
+
"prepublishOnly": "bun run build:npm",
|
|
30
|
+
"build:release": "sh ./scripts/build-release-assets.sh",
|
|
31
|
+
"release": "sh ./scripts/release.sh",
|
|
32
|
+
"typecheck": "tsc --noEmit",
|
|
33
|
+
"test": "bun test",
|
|
34
|
+
"lint": "oxlint .",
|
|
35
|
+
"lintf": "oxlint --fix .",
|
|
36
|
+
"lint:fix": "oxlint --fix .",
|
|
37
|
+
"format": "oxfmt --write .",
|
|
38
|
+
"format:check": "oxfmt --check ."
|
|
39
|
+
},
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"@slack/web-api": "^7.9.3",
|
|
42
|
+
"commander": "^14.0.1",
|
|
43
|
+
"hysnappy": "^0.3.0",
|
|
44
|
+
"node-emoji": "^2.2.0",
|
|
45
|
+
"turndown": "^7.2.0",
|
|
46
|
+
"turndown-plugin-gfm": "^1.0.2",
|
|
47
|
+
"zod": "^4.1.5"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@types/node": "^24",
|
|
51
|
+
"@types/turndown": "^5.0.6",
|
|
52
|
+
"bun-types": "^1.3.8",
|
|
53
|
+
"oxfmt": "^0.28.0",
|
|
54
|
+
"oxlint": "^1.43.0",
|
|
55
|
+
"simple-git-hooks": "^2.13.1",
|
|
56
|
+
"typescript": "^5.8.2"
|
|
57
|
+
},
|
|
58
|
+
"simple-git-hooks": {
|
|
59
|
+
"pre-commit": "bun run lintf && bun run format && git add -A"
|
|
60
|
+
},
|
|
61
|
+
"engines": {
|
|
62
|
+
"node": ">=24"
|
|
63
|
+
}
|
|
64
|
+
}
|