-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.2 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.2 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
{
"name": "@devdavi/morg",
"version": "0.1.0",
"description": "Developer productivity assistant CLI",
"type": "module",
"license": "MIT",
"bin": {
"morg": "./dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsup",
"dev": "tsx watch src/index.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint src",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "pnpm run build && pnpm run typecheck",
"link:local": "pnpm link --global"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"@clack/prompts": "^1.1.0",
"@notionhq/client": "^5.11.1",
"@slack/web-api": "^7.14.1",
"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/node": "^22.0.0",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.5.0",
"tsup": "^8.5.0",
"tsx": "^4.21.0",
"typescript": "^5.8.0",
"typescript-eslint": "^8.56.1",
"vitest": "^3.0.0"
}
}