-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 884 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 884 Bytes
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
{
"name": "cerebrate",
"private": true,
"type": "module",
"license": "MIT",
"packageManager": "bun@1.2.22",
"workspaces": [
"packages/*",
"clis/*",
"tests/*"
],
"scripts": {
"build:clis": "./scripts/build-all-clis.sh",
"build:entry": "bun run --filter=cerebrate build",
"build:all": "bun run build:clis",
"lint": "turbo run lint",
"test": "bun test --coverage",
"test:ci": "turbo run test",
"type-check": "turbo run type-check",
"cleanup": "rimraf './**/node_modules'; rimraf node_modules",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@types/bun": "^1.2.23",
"husky": "^9.1.7",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"turbo": "^2.5.8"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.2"
}
}