-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.19 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
{
"name": "agentic-db",
"version": "0.0.1",
"author": "Constructive <developers@constructive.io>",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/constructive-io/agentic-db"
},
"license": "MIT",
"publishConfig": {
"access": "restricted"
},
"scripts": {
"build": "pnpm -r run build",
"clean": "pnpm -r run clean",
"test": "pnpm -r run test",
"lint": "pnpm -r run lint",
"deps": "pnpm up -r -i -L",
"provision": "pnpm --filter @agentic-db/provision run provision",
"export:pgpm": "pnpm --filter @agentic-db/export run export",
"export:schema": "pnpm --filter @agentic-db/schemas run export",
"generate:sdk": "pnpm --filter @agentic-db/sdk run generate",
"generate:cli": "pnpm --filter @agentic-db/cli run generate",
"generate:all": "pnpm run export:schema && pnpm run generate:sdk && pnpm run generate:cli",
"export:all": "pnpm run export:pgpm && pnpm run generate:all",
"search": "pnpm --filter @agentic-db/rag run search",
"ask": "pnpm --filter @agentic-db/rag run ask",
"embed:all": "pnpm --filter @agentic-db/rag run embed:all"
},
"pnpm": {
"overrides": {
"graphql": "16.13.0",
"grafast": "1.0.0-rc.9",
"graphile-build": "5.0.0",
"graphile-build-pg": "5.0.1",
"graphile-config": "1.0.1",
"graphile-utils": "5.0.1",
"postgraphile": "5.0.1",
"@dataplan/json": "1.0.0-rc.6",
"@dataplan/pg": "1.0.0-rc.8",
"pg-sql2": "5.0.0-rc.5",
"tamedevil": "0.1.0-rc.6"
}
},
"devDependencies": {
"@constructive-io/graphql-codegen": "4.30.2",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.3",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.3.0",
"graphile-test": "^4.9.0",
"graphql": "16.13.0",
"jest": "^30.2.0",
"lerna": "^9.0.3",
"makage": "0.3.0",
"pgsql-test": "^4.9.0",
"prettier": "^3.7.4",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}