-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.54 KB
/
Copy pathpackage.json
File metadata and controls
129 lines (129 loc) · 3.54 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
{
"name": "@agntn/keys",
"version": "0.2.0",
"description": "Cryptographic key generation, derivation, addresses, and message signing across blockchains",
"keywords": [
"addresses",
"aptos",
"bitcoin",
"blockchain",
"cardano",
"crypto",
"cryptocurrency",
"cryptography",
"keys",
"solana",
"sui",
"tron",
"typescript",
"wallet"
],
"homepage": "https://github.com/agntn/keys#readme",
"bugs": {
"url": "https://github.com/agntn/keys/issues"
},
"license": "MIT",
"author": "oritwoen",
"repository": {
"type": "git",
"url": "git+https://github.com/agntn/keys.git"
},
"bin": {
"keys": "./dist/cli.mjs"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./blockchains/*": {
"types": "./dist/blockchains/*.d.mts",
"default": "./dist/blockchains/*.mjs"
},
"./bip32": {
"types": "./dist/utils/bip32/index.d.mts",
"default": "./dist/utils/bip32/index.mjs"
},
"./bip39": {
"types": "./dist/utils/bip39/index.d.mts",
"default": "./dist/utils/bip39/index.mjs"
},
"./slip10": {
"types": "./dist/utils/slip10/index.d.mts",
"default": "./dist/utils/slip10/index.mjs"
},
"./mcp": {
"types": "./dist/mcp.d.mts",
"default": "./dist/mcp.mjs"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "obuild",
"dev": "vitest dev",
"prepack": "pnpm build",
"release": "changelogen --release && git push --follow-tags",
"fmt": "pnpm build && oxlint . --fix && oxfmt --threads=8 .",
"lint": "pnpm build && oxlint . && oxfmt --threads=8 --check .",
"lint:fix": "pnpm build && oxlint . --fix && oxfmt --threads=8 .",
"test": "pnpm lint && pnpm test:types && pnpm build && pnpm test:ext && vitest run --coverage --maxWorkers=8 && node test/eval-mcp.mjs",
"test:types": "tsc --noEmit --skipLibCheck && tsc -p tsconfig.type-tests.json --noEmit --skipLibCheck",
"test:ext": "tsc -p tsconfig.extensions.json --noEmit",
"test:mcp": "pnpm build && node test/eval-mcp.mjs",
"playground": "tsx",
"playground:bip32": "tsx playground/bip32-demo.ts",
"playground:slip10": "tsx playground/slip10-demo.ts",
"playground:bip39": "tsx playground/bip39-demo.ts",
"playground:bip44": "tsx playground/bip44-demo.ts",
"playground:signing": "tsx playground/signing-demo.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.30.0",
"@noble/curves": "2.4.0",
"@noble/hashes": "2.4.0",
"@scure/base": "2.4.0",
"@scure/bip32": "2.4.0",
"@scure/bip39": "2.4.0",
"citty": "0.2.2",
"consola": "3.4.2",
"micro-key-producer": "0.10.2",
"typebox": "1.3.23"
},
"devDependencies": {
"@agntn/ox": "0.1.0",
"@earendil-works/pi-coding-agent": "0.84.4",
"@earendil-works/pi-tui": "0.84.4",
"@solana/web3.js": "^1.98.4",
"@types/node": "26.4.0",
"@vitest/coverage-v8": "4.1.11",
"changelogen": "0.6.2",
"ethers": "^6.17.0",
"obuild": "0.4.38",
"oxfmt": "0.65.0",
"oxlint": "1.80.0",
"oxlint-tsgolint": "^7.0.2001",
"tsx": "^4.23.13",
"typescript": "7.0.2",
"vitest": "4.1.11",
"ws": "^8.21.3"
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@11.24.0",
"pi": {
"extensions": [
"./packages/pi/extensions/*.ts"
]
}
}