-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.24 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
{
"name": "@useatom/cli",
"version": "0.2.1",
"description": "CLI + MCP server for Atom — GitHub PR notifications in Slack",
"license": "MIT",
"type": "module",
"bin": {
"atom": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@cfworker/json-schema": "^4.1.1",
"@inquirer/prompts": "^7.10.1",
"@modelcontextprotocol/sdk": "^1.30.0",
"chalk": "^5.6.2",
"commander": "^13.1.0",
"open": "^10.2.0",
"ora": "^8.2.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^18.19.0",
"tsup": "^8.5.1",
"typescript": "^5.7.0",
"vitest": "^3.2.0"
},
"engines": {
"node": ">=18.17"
},
"homepage": "https://useatom.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/vakra-dev/atom-cli.git"
},
"bugs": {
"url": "https://github.com/vakra-dev/atom-cli/issues"
},
"keywords": [
"slack",
"github",
"pull-requests",
"code-review",
"mcp",
"standup",
"cli"
],
"publishConfig": {
"access": "public"
}
}