-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.17 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
{
"name": "@agntn/chains",
"version": "0.2.3",
"description": "Canonical blockchain classes with registry, aliases, and address validation",
"homepage": "https://github.com/agntn/chains#readme",
"bugs": "https://github.com/agntn/chains/issues",
"license": "MIT",
"author": "oritwoen (https://github.com/oritwoen)",
"repository": {
"type": "git",
"url": "git+https://github.com/agntn/chains.git"
},
"bin": {
"chains": "./dist/cli.mjs"
},
"files": [
"dist",
"packages/pi/extensions",
"packages/omp/extensions"
],
"type": "module",
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./mcp": {
"types": "./dist/mcp.d.mts",
"import": "./dist/mcp.mjs"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "obuild",
"dev": "obuild --stub",
"fmt": "oxlint . --fix && oxfmt --write .",
"fmt:check": "oxlint . && oxfmt --check .",
"lint": "oxlint .",
"lint:fix": "oxlint . --fix",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit && pnpm build && tsc --noEmit -p tsconfig.extensions.json",
"prepack": "pnpm run build",
"release": "pnpm test && pnpm build && changelogen --release --push"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.30.0",
"citty": "0.2.2",
"consola": "3.4.2",
"typebox": "1.3.15"
},
"devDependencies": {
"@earendil-works/pi-coding-agent": "0.84.2",
"@types/node": "26.2.0",
"changelogen": "0.6.2",
"obuild": "0.4.38",
"oxfmt": "0.63.0",
"oxlint": "1.78.0",
"typescript": "7.0.2",
"vitest": "4.1.10"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": ">=0.84.2 <1",
"typebox": ">=1.3.14 <2"
},
"peerDependenciesMeta": {
"@earendil-works/pi-coding-agent": {
"optional": true
}
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@11.22.0",
"omp": {
"extensions": [
"./packages/omp/extensions/chains.ts"
]
},
"pi": {
"extensions": [
"./packages/pi/extensions/chains.ts"
]
}
}