-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.54 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
{
"name": "cosimi",
"private": true,
"description": "GraphRAG retrieval SDK + reference playgrounds — deterministic, LLM-free query-time retrieval over a document-derived chunk graph.",
"keywords": [
"cloudflare-workers",
"embeddings",
"graphrag",
"pgvector",
"postgres",
"rag",
"retrieval",
"sdk"
],
"license": "SEE LICENSE IN LICENSE.md",
"scripts": {
"dev": "bash scripts/dev-cosimi.sh",
"build": "turbo run build",
"lint": "oxlint",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"format": "oxfmt --ignore-path .gitignore --ignore-path .oxfmtignore",
"format:check": "oxfmt --check --ignore-path .gitignore --ignore-path .oxfmtignore",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build --filter='./packages/*' && changeset publish",
"clean": "turbo run clean && rm -rf node_modules .turbo",
"db:up": "docker compose -f docker-compose.dev.yml up -d --wait postgres",
"db:down": "docker compose -f docker-compose.dev.yml down",
"db:reset": "docker compose -f docker-compose.dev.yml down -v && pnpm db:up",
"migrate": "tsx --env-file=.env packages/db-core/src/migrate.ts up"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@cosimi/oxlint-config": "workspace:*",
"oxfmt": "^0.47.0",
"oxlint": "^1.0.0",
"tsx": "^4.19.0",
"turbo": "^2.3.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=22",
"pnpm": ">=11.0"
},
"packageManager": "pnpm@11.0.0"
}