-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.57 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.57 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
{
"name": "@rikaidev/cortex",
"version": "0.12.0",
"description": "⚠️ ARCHIVED - Use Claude Code, Gemini CLI, or OpenCode instead. See README.md",
"deprecated": true,
"deprecationMessage": "AI models now natively support 1M context, memory, and agentic workflows. See README.md for alternatives.",
"main": "dist/index.js",
"type": "module",
"bin": {
"cortex": "dist/cli/index.js"
},
"scripts": {
"build": "npm run lint && npm run knip && npm run compile",
"compile": "tsc",
"dev": "tsc --watch",
"lint": "eslint \"src/**/*.ts\" \"scripts/**/*.js\" --max-warnings 0",
"lint:fix": "eslint \"src/**/*.ts\" \"scripts/**/*.js\" --fix",
"quality": "node scripts/quality-check.js",
"knip": "knip",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:cli": "node dist/cli/index.js --help && node dist/core/mcp/server.js --version",
"prepublishOnly": "node -e \"console.error('❌ RELEASE WORKFLOW VIOLATION!\\n\\nYou must use the proper release workflow:\\n npm run release:patch # for patch releases\\n npm run release:minor # for minor releases\\n npm run release:major # for major releases\\n\\nDirect npm publish is blocked to ensure quality and consistency.\\n'); process.exit(1);\"",
"release:patch": "node scripts/publish-workflow.cjs patch",
"release:minor": "node scripts/publish-workflow.cjs minor",
"release:major": "node scripts/publish-workflow.cjs major"
},
"keywords": [
"ai",
"collaboration",
"prompt-injection",
"preference-learning",
"structured-thinking",
"development-workflow",
"cortex-ai",
"real-time-learning",
"cross-platform-ai"
],
"author": "RikaiDev",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/RikaiDev/cortex.git"
},
"bugs": {
"url": "https://github.com/RikaiDev/cortex/issues"
},
"homepage": "https://github.com/RikaiDev/cortex",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.1",
"chalk": "^5.0.0",
"commander": "^11.0.0",
"fs-extra": "^11.0.0",
"markdownlint-cli": "^0.47.0",
"reflect-metadata": "^0.2.2",
"typescript": "^5.0.0",
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^4.0.16",
"eslint": "^8.0.0",
"knip": "^5.64.1",
"prettier": "^3.0.0",
"vitest": "^4.0.16"
}
}