-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.84 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.84 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
{
"name": "graphile-llm",
"version": "0.1.0",
"description": "LLM integration plugin for PostGraphile v5 — server-side text-to-vector embedding and text companion fields for pgvector columns",
"author": "Constructive <developers@constructive.io>",
"homepage": "https://github.com/constructive-io/constructive",
"license": "MIT",
"main": "index.js",
"module": "esm/index.js",
"types": "index.d.ts",
"scripts": {
"clean": "makage clean",
"prepack": "npm run build",
"build": "makage build",
"build:dev": "makage build --dev",
"lint": "eslint . --fix",
"test": "jest --forceExit",
"test:watch": "jest --watch"
},
"publishConfig": {
"access": "public",
"directory": "dist"
},
"repository": {
"type": "git",
"url": "https://github.com/constructive-io/constructive"
},
"bugs": {
"url": "https://github.com/constructive-io/constructive/issues"
},
"dependencies": {
"@agentic-kit/ollama": "^1.0.3"
},
"peerDependencies": {
"@dataplan/pg": "1.0.0",
"grafast": "1.0.0",
"graphile-build": "5.0.0",
"graphile-build-pg": "5.0.0",
"graphile-config": "1.0.0",
"graphile-search": "workspace:^",
"graphile-utils": "5.0.0",
"graphql": "16.13.0",
"pg-sql2": "5.0.0",
"postgraphile": "5.0.0"
},
"peerDependenciesMeta": {
"graphile-search": {
"optional": true
},
"graphile-utils": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^22.19.11",
"graphile-connection-filter": "workspace:^",
"graphile-search": "workspace:^",
"graphile-test": "workspace:^",
"makage": "^0.3.0",
"pgsql-test": "workspace:^"
},
"keywords": [
"postgraphile",
"graphile",
"constructive",
"plugin",
"llm",
"embedding",
"pgvector",
"rag",
"agentic-kit",
"ollama",
"openai"
]
}