-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.07 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
{
"name": "agent-runtime-services",
"version": "0.1.0",
"description": "Local-first runtime service plane for domain agents and build agents with Runtime Core capabilities and memory substrate Agent Services",
"repository": {
"type": "git",
"url": "git+https://github.com/cloudsbeyond/agent-runtime-services.git"
},
"bugs": {
"url": "https://github.com/cloudsbeyond/agent-runtime-services/issues"
},
"homepage": "https://github.com/cloudsbeyond/agent-runtime-services#readme",
"type": "module",
"bin": {
"agent-runtime-services": "./bin/agent-runtime-services.mjs"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"bin",
"architecture",
"examples",
"README.md",
"README.zh-CN.md",
"PRD.md",
"LICENSE",
"NOTICE"
],
"scripts": {
"dev": "tsup --watch",
"build": "rm -rf dist && tsup",
"typecheck": "tsc --noEmit",
"test": "vitest run --dir test",
"test:acceptance": "vitest run test/external-runtime-services.acceptance.test.ts test/remote-provider-config.acceptance.test.ts test/remote-runtime-services.acceptance.test.ts test/cli-rpc-smoke.test.ts",
"prepublishOnly": "pnpm test:acceptance && pnpm test && pnpm typecheck && pnpm build && npm pack --dry-run --ignore-scripts"
},
"dependencies": {
"@lancedb/lancedb": "^0.29.0",
"apache-arrow": "18.1.0",
"commander": "^12.1.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=20.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"protobufjs"
],
"overrides": {
"rollup": "npm:@rollup/wasm-node@4.60.2"
}
},
"keywords": [
"agent",
"agent-runtime",
"runtime-services",
"local-first",
"json-rpc",
"typescript",
"models",
"artifacts",
"artifact-store",
"memory-substrate",
"vector-search",
"vectors",
"resources",
"secrets"
],
"license": "MIT"
}