-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.52 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
{
"name": "@shashwatjain511/weave",
"version": "0.3.0",
"description": "Weave heterogeneous records from databases, APIs, and files into one connected, traversable graph — declaratively, in pure TypeScript, with zero infrastructure. Built so agents can read across sources as one thing.",
"type": "module",
"license": "MIT",
"author": "Shashwat Jain",
"keywords": [
"graph",
"ontology",
"knowledge-graph",
"business-graph",
"entity-resolution",
"agents",
"mcp",
"ai",
"data-integration",
"connected-components",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/codeyogi911/weave.git"
},
"bugs": {
"url": "https://github.com/codeyogi911/weave/issues"
},
"homepage": "https://github.com/codeyogi911/weave#readme",
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"clean": "rm -rf dist",
"test": "vitest run",
"test:watch": "vitest",
"example": "tsx examples/agent-360/run.ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm run clean && pnpm run build && pnpm run test"
},
"devDependencies": {
"@types/node": "^26.0.0",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
}
}