-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 949 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 949 Bytes
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
{
"name": "@hashlock-tech/intent-schema",
"version": "1.0.0",
"description": "Walrasian intent standard for HashLock — dynamic preference functions for intent-based clearing",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"hashlock-intent": "dist/mcp/server.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "tsc --noEmit"
},
"keywords": [
"hashlock",
"intent",
"walrasian",
"htlc",
"cross-chain",
"defi",
"solver"
],
"author": "HashLock",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"zod": "^3.23.0"
},
"devDependencies": {
"typescript": "^5.5.0",
"vitest": "^2.0.0"
}
}