-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.54 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
{
"name": "pipeline-cli",
"version": "0.1.0",
"description": "AI-native CLI operating system for developer-founders",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"pipeline": "./bin/run.js",
"pipeline-crm-mcp": "./bin/mcp.js"
},
"scripts": {
"build": "tsc -b",
"dev": "tsc -b --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check src/ test/",
"format": "biome check --write src/ test/",
"postinstall": "npm run build || true"
},
"oclif": {
"bin": "pipeline",
"dirname": "pipeline",
"commands": {
"strategy": "pattern",
"target": "./dist/commands"
},
"plugins": [
"@oclif/plugin-help"
],
"topicSeparator": ":"
},
"files": [
"/bin",
"/dist"
],
"engines": {
"node": ">=20.0.0"
},
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"@composio/core": "^0.6.3",
"@inquirer/prompts": "^8.2.1",
"@modelcontextprotocol/sdk": "^1.26.0",
"@oclif/core": "^4.8.0",
"@oclif/plugin-help": "^6.2.37",
"better-sqlite3": "^12.6.2",
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"csv-parse": "^6.1.0",
"csv-stringify": "^6.6.0",
"drizzle-orm": "^0.45.1",
"fuse.js": "^7.1.0",
"smol-toml": "^1.6.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.3",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.3.0",
"drizzle-kit": "^0.31.9",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}