-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 4.84 KB
/
Copy pathpackage.json
File metadata and controls
131 lines (131 loc) · 4.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "agentic-data-kernel",
"version": "1.1.0",
"description": "Temporal knowledge and durable workflow infrastructure for software agents",
"keywords": [
"agents",
"workflow",
"temporal",
"provenance",
"mcp",
"postgresql",
"pgvector"
],
"author": "Jason Doyle",
"type": "module",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Jason-Doyle/agentic-data-kernel.git"
},
"bugs": {
"url": "https://github.com/Jason-Doyle/agentic-data-kernel/issues"
},
"homepage": "https://github.com/Jason-Doyle/agentic-data-kernel#readme",
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org/"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./production": {
"types": "./dist/production/index.d.ts",
"import": "./dist/production/index.js"
}
},
"engines": {
"node": ">=22.19.0",
"npm": ">=10.0.0"
},
"packageManager": "npm@12.0.2",
"bin": {
"agentic-data": "dist/cli.js",
"agentic-data-kernel": "dist/cli.js",
"agentic-data-prod": "dist/production/cli.js"
},
"files": [
"dist/*.js",
"dist/*.js.map",
"dist/*.d.ts",
"dist/production/*.js",
"dist/production/*.js.map",
"dist/production/*.d.ts",
"dist/examples/*.js",
"dist/examples/*.js.map",
"migrations",
"docs",
"scripts/backup.ps1",
"scripts/backup-common.ps1",
"scripts/generate-secrets.ps1",
"scripts/restore.ps1",
"scripts/validate-deployments.ps1",
"examples",
"benchmarks",
"deploy",
"docker",
"docker-compose.yml",
"SECURITY.md",
"SUPPORT.md",
"CODE_OF_CONDUCT.md",
"CHANGELOG.md",
".env.example",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
"build": "npm run clean && tsc -p tsconfig.json && tsc -p tsconfig.examples.build.json",
"prepack": "npm run build",
"check": "node scripts/validate-version.mjs && tsc -p tsconfig.json --noEmit && tsc -p tsconfig.benchmarks.json --noEmit",
"test": "npm run build && node --no-warnings --test \"dist/test/*.test.js\"",
"test:package": "node scripts/test-package.mjs",
"test:backup-manifest": "pwsh -NoProfile -File scripts/test-backup-manifest.ps1",
"release:check": "npm run check && npm test && npm run test:package && npm run test:backup-manifest",
"deployment:check": "pwsh -NoProfile -File scripts/validate-deployments.ps1",
"example": "node --no-warnings dist/cli.js example --db .data/example.db",
"example:all": "npm run example && npm run example:library && npm run example:agent && npm run example:mcp",
"example:agent": "node --no-warnings dist/examples/agent-middleware.js",
"example:library": "node --no-warnings dist/examples/local-library.js",
"example:mcp": "node --no-warnings dist/examples/mcp-client.js",
"example:production-http": "node dist/examples/production-http.js",
"example:production-agent": "node dist/examples/production-agent-middleware.js",
"example:production-retail": "node dist/examples/production-retail.js",
"example:sre": "node --env-file=.env dist/examples/sre-scenario.js",
"example:embedding": "node dist/examples/embedding-provider.js",
"example:mock-embeddings": "node dist/examples/mock-embedding-server.js",
"example:mock-effects": "node dist/examples/mock-effect-receiver.js",
"benchmark:sre": "npm run build && tsx benchmarks/sre/run.ts",
"benchmark:sre:verify": "npm run benchmark:sre -- --verify-results",
"serve": "npm run build && node --no-warnings dist/cli.js serve --db .data/agentic.db",
"mcp": "npm run build && node --no-warnings dist/cli.js mcp --db .data/agentic.db",
"prod:bootstrap": "npm run build && node --env-file=.env dist/production/cli.js bootstrap-role",
"prod:migrate": "npm run build && node --env-file=.env dist/production/cli.js migrate",
"prod:status": "npm run build && node --env-file=.env dist/production/cli.js migration-status",
"prod:serve": "npm run build && node --env-file=.env dist/production/cli.js serve",
"prod:worker": "npm run build && node --env-file=.env dist/production/cli.js worker",
"prod:mcp": "npm run build && node --env-file=.env dist/production/cli.js mcp",
"prod:load": "npm run build && node --env-file=.env dist/production/cli.js load"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0",
"@types/node": "^22.19.0",
"@types/pg": "^8.23.1",
"pg": "^8.23.0",
"pgvector": "^0.3.0",
"pino": "^10.3.1",
"undici": "^8.10.1",
"zod": "^4.5.4"
},
"devDependencies": {
"ajv": "^8.20.0",
"semver": "^7.8.5",
"tsx": "^4.23.13",
"typescript": "^7.0.2"
}
}