-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 2.64 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
{
"name": "@agntn/explorers",
"version": "0.5.2",
"description": "Unified multi-chain block explorer provider library for AI agents",
"keywords": [
"omp-extension",
"pi-package"
],
"homepage": "https://github.com/agntn/explorers#readme",
"bugs": {
"url": "https://github.com/agntn/explorers/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/agntn/explorers.git"
},
"bin": {
"explorers": "./dist/cli.mjs"
},
"files": [
"dist",
"packages/pi/extensions",
"packages/omp/extensions"
],
"type": "module",
"sideEffects": [
"./dist/cli.mjs"
],
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./providers/*": {
"types": "./dist/providers/*.d.mts",
"import": "./dist/providers/*.mjs"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "obuild",
"dev": "obuild --stub",
"fmt": "oxlint . --fix && oxfmt .",
"lint": "oxlint . && oxfmt --check .",
"typecheck": "pnpm build && tsc --noEmit",
"test": "vitest",
"test:run": "vitest --run",
"prepack": "pnpm run build",
"release": "pnpm test:run && changelogen --release --push"
},
"dependencies": {
"@agntn/chains": "^0.3.4",
"@modelcontextprotocol/sdk": "^1.30.0",
"citty": "^0.2.2",
"consola": "^3.4.2",
"ofetch": "^1.5.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@agntn/ox": "^0.1.0",
"@earendil-works/pi-coding-agent": "latest",
"@earendil-works/pi-tui": "latest",
"@oh-my-pi/omptype": "17.2.12",
"@oh-my-pi/pi-coding-agent": "17.2.12",
"@types/node": "latest",
"changelogen": "0.6.2",
"obuild": "^0.4.36",
"oxfmt": "^0.63.0",
"oxlint": "^1.80.0",
"oxlint-tsgolint": "^7.0.2001",
"tsx": "^4.22.4",
"typebox": "^1.3.16",
"typescript": "^6.0.3",
"vitest": "^4.1.7"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*",
"@oh-my-pi/pi-coding-agent": "*",
"typebox": "*"
},
"peerDependenciesMeta": {
"@earendil-works/pi-coding-agent": {
"optional": true
},
"@earendil-works/pi-tui": {
"optional": true
},
"@oh-my-pi/pi-coding-agent": {
"optional": true
},
"typebox": {
"optional": true
}
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@10.33.4",
"omp": {
"extensions": [
"./packages/omp/extensions/explorers.ts"
]
},
"pi": {
"extensions": [
"./packages/pi/extensions/*.ts"
]
}
}