-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.56 KB
/
Copy pathpackage.json
File metadata and controls
130 lines (130 loc) · 3.56 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
{
"name": "@tangle-network/agent-knowledge",
"version": "7.2.5",
"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": "tsdown",
"dev": "tsdown --watch",
"prepublishOnly": "pnpm build",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "pnpm run typecheck:src && pnpm run typecheck:contracts",
"typecheck:src": "tsc --noEmit",
"typecheck:contracts": "tsc --noEmit -p tsconfig.contracts.json",
"lint": "biome check src tests",
"format": "biome format --write src tests",
"check:skills": "node scripts/check-skills.mjs",
"verify:package": "pnpm run check:skills && publint && attw --pack --profile esm-only . && node scripts/verify-package.mjs",
"verify:official-optimizers": "node scripts/verify-official-optimizers.mjs"
},
"dependencies": {
"proper-lockfile": "4.1.2",
"zod": "^4.4.3"
},
"peerDependencies": {
"@tangle-network/agent-eval": ">=0.145.10 <0.146.0",
"@tangle-network/agent-interface": ">=0.49.0 <0.50.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.5",
"@biomejs/biome": "^2.5.5",
"@neo4j-labs/agent-memory": "0.4.1",
"@tangle-network/agent-eval": "0.145.10",
"@tangle-network/agent-interface": "0.49.0",
"@types/node": "^26.1.1",
"@types/proper-lockfile": "4.1.4",
"mem0ai": "3.1.2",
"publint": "^0.3.22",
"tsdown": "^0.22.14",
"typescript": "^7.0.2",
"vite": "8.1.5",
"vitest": "^4.1.10"
},
"pnpm": {
"ignoredBuiltDependencies": [
"@ax-llm/ax",
"esbuild"
],
"onlyBuiltDependencies": [
"better-sqlite3"
],
"minimumReleaseAge": 4320,
"minimumReleaseAgeExclude": [
"@tangle-network/agent-core",
"@tangle-network/agent-eval",
"@tangle-network/agent-interface",
"@tangle-network/agent-trace-contract",
"esbuild",
"vite"
],
"overrides": {
"@hono/node-server": "2.0.12",
"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"
}