-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.28 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
{
"name": "@diffbot/pi",
"version": "0.2.0",
"description": "Pi package for Diffbot — structured web knowledge tools for the Pi coding agent",
"type": "module",
"license": "MIT",
"author": "Diffbot",
"keywords": [
"pi-package",
"pi",
"pi-coding-agent",
"diffbot",
"knowledge-graph",
"dql",
"extract",
"entities"
],
"repository": {
"type": "git",
"url": "git+https://github.com/diffbot/diffbot-pi.git"
},
"homepage": "https://github.com/diffbot/diffbot-pi#readme",
"bugs": {
"url": "https://github.com/diffbot/diffbot-pi/issues"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"files": [
"extensions",
"skills",
"LICENSE",
"README.md"
],
"scripts": {
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@diffbot/typescript": "^0.2.0"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*",
"typebox": "*"
},
"devDependencies": {
"@earendil-works/pi-coding-agent": "^0.80.10",
"@types/node": "^22.15.21",
"typebox": "^1.3.6",
"typescript": "^5.8.3"
},
"pi": {
"extensions": [
"./extensions"
],
"skills": [
"./skills"
],
"image": "https://www.diffbot.com/img/home/diffy-surf.gif"
}
}