-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.46 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
{
"name": "@frosts/mcp",
"version": "0.2.2-alpha.5",
"type": "module",
"description": "Model Context Protocol (MCP) server exposing the @frosts API surface to AI tools",
"license": "MIT",
"author": "Leonardo Custodio <leonardo.custodio@parity.io> (https://github.com/leonardocustodio)",
"homepage": "https://github.com/leonardocustodio/frosts",
"repository": {
"type": "git",
"url": "git+https://github.com/leonardocustodio/frosts.git",
"directory": "packages/mcp"
},
"bugs": {
"url": "https://github.com/leonardocustodio/frosts/issues"
},
"bin": {
"frosts-mcp": "./dist/index.mjs"
},
"main": "dist/index.mjs",
"files": [
"dist",
"data",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "tsdown",
"build:data": "bun run scripts/build-mcp-data.ts",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist data",
"prepublishOnly": "npm run build && npm run build:data"
},
"keywords": [
"frost",
"threshold-signatures",
"mcp",
"model-context-protocol",
"ai",
"documentation",
"claude"
],
"engines": {
"node": ">=18.0.0"
},
"dependencies": {},
"devDependencies": {
"@frosts/eslint": "workspace:*",
"@frosts/tsconfig": "workspace:*",
"@types/node": "^26.0.0",
"eslint": "^10.5.0",
"tsdown": "^0.22.3",
"typedoc": "^0.28.19",
"typescript": "^6.0.3"
}
}