-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.05 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
{
"name": "sigild",
"version": "0.0.12",
"mcpName": "io.github.cdrn/sigil",
"description": "Claude can sign, but never see. MCP server + CLI that keeps private keys out of the LLM's context window.",
"license": "Apache-2.0",
"author": "Chris Doran",
"homepage": "https://github.com/cdrn/sigil#readme",
"bugs": {
"url": "https://github.com/cdrn/sigil/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cdrn/sigil.git"
},
"keywords": [
"claude",
"claude-code",
"anthropic",
"agent",
"mcp",
"model-context-protocol",
"signing",
"ethereum",
"eip-1559",
"eip-712",
"eip-191",
"key-management",
"wallet-security",
"supply-chain"
],
"type": "module",
"bin": {
"sigil": "dist/src/bin/sigil.js",
"sigil-mcp": "dist/src/bin/sigil-mcp.js",
"sigild": "dist/src/bin/sigil-mcp.js",
"sigil-hook-pre": "dist/src/bin/sigil-hook-pre.js",
"sigil-hook-post": "dist/src/bin/sigil-hook-post.js"
},
"files": [
"dist/src/**/*",
"README.md",
"THREAT_MODEL.md",
"SECURITY.md",
"CONTRIBUTING.md",
"LICENSE"
],
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "tsc && node scripts/post-build.mjs",
"test": "npm run build && node --test 'dist/test/**/*.test.js'",
"test:watch": "node --watch --test 'dist/test/**/*.test.js'",
"lint": "eslint src test scripts eslint.config.mjs",
"format": "prettier --write 'src/**/*.ts' 'test/**/*.ts' 'scripts/**/*.mjs' eslint.config.mjs",
"format:check": "prettier --check 'src/**/*.ts' 'test/**/*.ts' 'scripts/**/*.mjs' eslint.config.mjs"
},
"dependencies": {
"@iarna/toml": "2.2.5",
"@noble/ciphers": "2.2.0",
"@noble/ed25519": "3.1.0",
"@noble/hashes": "2.2.0",
"@noble/secp256k1": "3.1.0",
"qrcode-generator": "2.0.4"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/node": "^22.10.0",
"eslint": "10.6.0",
"globals": "17.7.0",
"prettier": "3.9.4",
"typescript": "^6.0.3",
"typescript-eslint": "8.63.0"
}
}