-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.36 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
{
"name": "@devdavi/morg",
"version": "0.1.0",
"description": "Developer productivity assistant CLI",
"type": "module",
"license": "MIT",
"bin": {
"morg": "./dist/index.js"
},
"files": [
"dist"
],
"packageManager": "bun@1.3.13",
"engines": {
"bun": ">=1.3.0"
},
"scripts": {
"build": "bun scripts/build.ts",
"dev": "bun --watch src/index.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "bun run build && bun run typecheck",
"link:local": "bun link"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"@clack/prompts": "^1.1.0",
"@lydell/node-pty": "1.2.0-beta.12",
"@notionhq/client": "^5.11.1",
"@opentui/core": "^0.3.0",
"@slack/web-api": "^7.14.1",
"@xterm/headless": "^6.0.0",
"boxen": "^8.0.0",
"chalk": "^5.4.1",
"cli-table3": "^0.6.5",
"commander": "^14.0.0",
"execa": "^9.6.0",
"figures": "^6.1.0",
"ora": "^8.2.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/bun": "^1.3.3",
"@types/node": "^22.0.0",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.5.0",
"typescript": "^5.8.0",
"typescript-eslint": "^8.56.1",
"vitest": "^3.0.0"
}
}