-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.8 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.8 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
{
"name": "cortex-monorepo",
"version": "0.8.0",
"description": "Cortex - The Universal Context Layer for AI",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "bun run build.ts",
"build:core": "bun --cwd packages/core run build",
"build:cli": "bun --cwd packages/cli run build",
"build:mcp": "bun --cwd packages/mcp-server run build",
"build:extension": "bun --cwd packages/vscode-extension run build",
"dev:cli": "bun --cwd packages/cli run dev",
"dev:mcp": "bun --cwd packages/mcp-server run dev",
"dev:extension": "bun --cwd packages/vscode-extension run dev",
"test": "bun test packages/core packages/vscode-extension packages/shared packages/mcp-server",
"test:cli": "bun test packages/cli",
"test:all": "bun run test && bun run test:cli",
"test:auth": "bun test packages/core/src/__tests__/auth.test.ts",
"test:core": "bun --cwd packages/core test",
"test:watch": "bun test packages/core packages/vscode-extension packages/shared packages/mcp-server --watch",
"test:coverage": "bun test packages/core packages/vscode-extension packages/shared packages/mcp-server --coverage",
"test:report": "bun test packages/core packages/vscode-extension packages/shared packages/mcp-server --reporter=junit --reporter-outfile=reports/junit.xml --coverage --coverage-reporter=lcov --coverage-dir=reports/coverage",
"typecheck": "bunx tsc --noEmit",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"check": "biome check --write .",
"check:ci": "biome ci .",
"prepare": "husky",
"version": "bunx changeset version",
"sync-versions": "bun run scripts/sync-versions.ts",
"release": "bun run build && bun run scripts/publish.ts",
"publish:all": "bun run scripts/publish.ts"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,jsonc}": [
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
]
},
"keywords": [
"mcp",
"ai",
"memory",
"context",
"claude",
"copilot",
"cursor",
"vscode-extension"
],
"author": "Cortex Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/EcuaByte-lat/Cortex.git"
},
"bugs": {
"url": "https://github.com/EcuaByte-lat/Cortex/issues"
},
"homepage": "https://github.com/EcuaByte-lat/Cortex#readme",
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.29.8",
"@types/bun": "^1.1.13",
"@types/node": "^25.0.0",
"@types/vscode": "^1.85.0",
"bun-types": "^1.3.5",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=18",
"bun": ">=1.0"
}
}