-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.61 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.61 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
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
{
"name": "@rusintez/slack",
"version": "0.2.2",
"description": "Agent-friendly Slack CLI and library with local sync and triggers",
"type": "module",
"main": "./dist/lib.js",
"types": "./dist/lib.d.ts",
"exports": {
".": {
"types": "./dist/lib.d.ts",
"import": "./dist/lib.js"
},
"./api": {
"types": "./dist/api.d.ts",
"import": "./dist/api.js"
},
"./config": {
"types": "./dist/config.d.ts",
"import": "./dist/config.js"
},
"./sync": {
"types": "./dist/sync.d.ts",
"import": "./dist/sync.js"
},
"./resolve": {
"types": "./dist/resolve.d.ts",
"import": "./dist/resolve.js"
},
"./output": {
"types": "./dist/output.d.ts",
"import": "./dist/output.js"
},
"./trigger": {
"types": "./dist/trigger.d.ts",
"import": "./dist/trigger.js"
}
},
"bin": {
"slack": "dist/index.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rusintez/slack.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"slack",
"cli",
"agent",
"ai",
"sync",
"trigger",
"bot"
],
"author": "rusintez",
"license": "MIT",
"dependencies": {
"@commander-js/extra-typings": "^13.0.0",
"commander": "^13.0.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=20"
}
}