-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 841 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 841 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
{
"name": "cortex",
"version": "0.0.0-dev",
"main": "src/index.ts",
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@types/bun": "latest",
"husky": "^9.1.7",
"oxlint": "^1.50.0",
"typescript": "^5.9.3"
},
"bin": {
"cortex": "./src/cli.ts"
},
"description": "Channel-agnostic life assistant runtime with tool-calling agent loop",
"scripts": {
"start": "bun run src/index.ts",
"typecheck": "tsc --noEmit",
"lint": "oxlint src/",
"format": "biome check --write src/ test/",
"format:check": "biome check src/ test/",
"test": "bun test",
"validate": "bun run typecheck && bun run lint && bun run format:check && bun run test",
"version:bump": "bunx version-bump",
"prepare": "husky"
},
"type": "module",
"dependencies": {
"@shetty4l/core": "^0.1.40"
}
}