|
| 1 | +{ |
| 2 | + "name": "graphile-llm", |
| 3 | + "version": "0.1.0", |
| 4 | + "description": "LLM integration plugin for PostGraphile v5 — server-side text-to-vector embedding and text companion fields for pgvector columns", |
| 5 | + "author": "Constructive <developers@constructive.io>", |
| 6 | + "homepage": "https://github.com/constructive-io/constructive", |
| 7 | + "license": "MIT", |
| 8 | + "main": "index.js", |
| 9 | + "module": "esm/index.js", |
| 10 | + "types": "index.d.ts", |
| 11 | + "scripts": { |
| 12 | + "clean": "makage clean", |
| 13 | + "prepack": "npm run build", |
| 14 | + "build": "makage build", |
| 15 | + "build:dev": "makage build --dev", |
| 16 | + "lint": "eslint . --fix", |
| 17 | + "test": "jest --forceExit", |
| 18 | + "test:watch": "jest --watch" |
| 19 | + }, |
| 20 | + "publishConfig": { |
| 21 | + "access": "public", |
| 22 | + "directory": "dist" |
| 23 | + }, |
| 24 | + "repository": { |
| 25 | + "type": "git", |
| 26 | + "url": "https://github.com/constructive-io/constructive" |
| 27 | + }, |
| 28 | + "bugs": { |
| 29 | + "url": "https://github.com/constructive-io/constructive/issues" |
| 30 | + }, |
| 31 | + "dependencies": { |
| 32 | + "@agentic-kit/ollama": "^1.0.3" |
| 33 | + }, |
| 34 | + "peerDependencies": { |
| 35 | + "@dataplan/pg": "1.0.0", |
| 36 | + "grafast": "1.0.0", |
| 37 | + "graphile-build": "5.0.0", |
| 38 | + "graphile-build-pg": "5.0.0", |
| 39 | + "graphile-config": "1.0.0", |
| 40 | + "graphile-search": "workspace:^", |
| 41 | + "graphile-utils": "5.0.0", |
| 42 | + "graphql": "16.13.0", |
| 43 | + "pg-sql2": "5.0.0", |
| 44 | + "postgraphile": "5.0.0" |
| 45 | + }, |
| 46 | + "peerDependenciesMeta": { |
| 47 | + "graphile-search": { |
| 48 | + "optional": true |
| 49 | + }, |
| 50 | + "graphile-utils": { |
| 51 | + "optional": true |
| 52 | + } |
| 53 | + }, |
| 54 | + "devDependencies": { |
| 55 | + "@types/node": "^22.19.11", |
| 56 | + "graphile-connection-filter": "workspace:^", |
| 57 | + "graphile-search": "workspace:^", |
| 58 | + "graphile-test": "workspace:^", |
| 59 | + "makage": "^0.3.0", |
| 60 | + "pgsql-test": "workspace:^" |
| 61 | + }, |
| 62 | + "keywords": [ |
| 63 | + "postgraphile", |
| 64 | + "graphile", |
| 65 | + "constructive", |
| 66 | + "plugin", |
| 67 | + "llm", |
| 68 | + "embedding", |
| 69 | + "pgvector", |
| 70 | + "rag", |
| 71 | + "agentic-kit", |
| 72 | + "ollama", |
| 73 | + "openai" |
| 74 | + ] |
| 75 | +} |
0 commit comments