-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 2.94 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 2.94 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
{
"name": "@tangle-network/agent-knowledge",
"version": "5.0.3",
"description": "Build, search, evaluate, and improve source-backed knowledge bases.",
"homepage": "https://github.com/tangle-network/agent-knowledge#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tangle-network/agent-knowledge.git"
},
"bugs": {
"url": "https://github.com/tangle-network/agent-knowledge/issues"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./viz": {
"types": "./dist/viz/index.d.ts",
"import": "./dist/viz/index.js",
"default": "./dist/viz/index.js"
},
"./cli": {
"types": "./dist/cli.d.ts",
"import": "./dist/cli.js",
"default": "./dist/cli.js"
},
"./memory": {
"types": "./dist/memory/index.d.ts",
"import": "./dist/memory/index.js",
"default": "./dist/memory/index.js"
},
"./sources": {
"types": "./dist/sources/index.d.ts",
"import": "./dist/sources/index.js",
"default": "./dist/sources/index.js"
},
"./benchmarks": {
"types": "./dist/benchmarks/index.d.ts",
"import": "./dist/benchmarks/index.js",
"default": "./dist/benchmarks/index.js"
}
},
"bin": {
"agent-knowledge": "dist/cli.js"
},
"files": [
"dist",
"docs",
"skills",
"AGENTS.md",
"CHANGELOG.md",
"README.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepublishOnly": "pnpm build",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "biome check src tests",
"format": "biome format --write src tests",
"check:skills": "node scripts/check-skills.mjs",
"verify:package": "pnpm run check:skills && node scripts/verify-package.mjs",
"verify:official-optimizers": "node scripts/verify-official-optimizers.mjs"
},
"dependencies": {
"@tangle-network/agent-eval": "0.127.0",
"@tangle-network/agent-interface": "^0.32.0",
"proper-lockfile": "4.1.2",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.5.5",
"@neo4j-labs/agent-memory": "0.4.1",
"@types/node": "^26.1.1",
"@types/proper-lockfile": "4.1.4",
"mem0ai": "3.1.1",
"tsup": "^8.0.0",
"typescript": "^6.0.3",
"vite": "8.1.5",
"vitest": "^4.1.10"
},
"pnpm": {
"minimumReleaseAge": 4320,
"minimumReleaseAgeExclude": [
"@tangle-network/agent-eval",
"@tangle-network/agent-interface",
"esbuild",
"vite"
],
"overrides": {
"@hono/node-server": "2.0.11",
"esbuild": "0.28.1",
"hono": "4.12.32",
"vite": "8.1.5",
"ws": "8.21.1"
}
},
"engines": {
"node": ">=20.19.0"
},
"license": "MIT",
"packageManager": "pnpm@10.34.5"
}