-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.49 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.49 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@blackms/aistack",
"version": "1.6.1",
"description": "Clean agent orchestration for Claude Code",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"aistack": "./dist/cli/index.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./memory": {
"types": "./dist/memory/index.d.ts",
"import": "./dist/memory/index.js"
},
"./agents": {
"types": "./dist/agents/index.d.ts",
"import": "./dist/agents/index.js"
},
"./mcp": {
"types": "./dist/mcp/index.d.ts",
"import": "./dist/mcp/index.js"
}
},
"files": [
"dist",
"templates",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli/index.js",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage && vitest run --config vitest.integration.config.ts --coverage && node scripts/merge-coverage.js",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.ts\"",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"web": "node dist/cli/index.js web start",
"web:dev": "npm run build && npm run web",
"dev:web": "cd web && npm run dev",
"build:web": "cd web && npm run build"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.71.0",
"@modelcontextprotocol/sdk": "^1.25.0",
"@sentry/node": "^10.36.0",
"@types/bcrypt": "^6.0.0",
"@types/jsonwebtoken": "^9.0.10",
"bcrypt": "^6.0.0",
"better-sqlite3": "^11.7.0",
"commander": "^12.1.0",
"jsonwebtoken": "^9.0.3",
"openai": "^4.77.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.10.5",
"@vitest/coverage-v8": "^2.1.9",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.1",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"agent",
"orchestration",
"claude",
"mcp",
"ai",
"llm"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/blackms/aistack.git"
}
}