-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.59 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.59 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
{
"name": "@harperfast/cortex",
"version": "0.3.0",
"description": "Open-source AI memory system powered by Harper Fabric. Clone, configure, deploy.",
"type": "module",
"main": "resources.js",
"bin": {
"synapse": "./bin/synapse.js"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/HarperFast/Cortex.git"
},
"scripts": {
"start": "harperdb run .",
"dev": "harperdb dev .",
"deploy": "npx -y dotenv-cli -- harperdb deploy . restart=rolling replicated=true",
"commitlint": "commitlint --edit",
"format:check": "dprint check",
"format:fix": "dprint fmt",
"format:staged": "dprint check --staged --allow-no-files",
"lint:check": "oxlint .",
"lint:fix": "oxlint . --fix",
"test": "node --experimental-test-module-mocks --test test/*.test.js",
"test:watch": "node --experimental-test-module-mocks --test --watch test/*.test.js",
"test:coverage": "node --experimental-test-module-mocks --experimental-test-coverage --test test/*.test.js"
},
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@xenova/transformers": "^2.17.2"
},
"devDependencies": {
"harperdb": "*",
"@commitlint/cli": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/npm": "^13.1.1",
"@semantic-release/release-notes-generator": "^14.1.0",
"conventional-changelog-conventionalcommits": "^9.1.0",
"dprint": "^0.52.0",
"oxlint": "^1.38.0",
"semantic-release": "^25.0.2"
}
}