-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.39 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.39 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
{
"name": "colibri",
"version": "0.0.1",
"description": "Colibri — MCP orchestration runtime (execution · intelligence · legitimacy).",
"type": "module",
"engines": {
"node": ">=20"
},
"main": "src/server.ts",
"bin": {
"colibri": "dist/server.js"
},
"files": [
"dist",
"src/db/schema.sql"
],
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "tsx watch src/server.ts",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"lint": "eslint src",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"better-sqlite3": "^11.5.0",
"chevrotain": "11.0.3",
"dotenv": "^16.4.7",
"gray-matter": "^4.0.3",
"merkletreejs": "^0.6.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.10",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.3.3"
},
"repository": {
"type": "git",
"url": "https://github.com/LastEld/AMS.git"
},
"license": "MIT"
}