-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 881 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 881 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
{
"name": "onsight-api",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Docs, a typed signing helper, and examples for the Onsight API",
"scripts": {
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"example": "tsx examples/x402-agent-order.ts",
"prepare": "husky"
},
"dependencies": {
"viem": "^2.55.0",
"x402-fetch": "^1.2.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@jest/globals": "^30.0.0",
"@types/node": "^22.20.1",
"eslint": "^9.39.4",
"husky": "^9.1.7",
"jest": "^30.0.0",
"prettier": "^3.9.5",
"ts-jest": "^29.4.11",
"tsx": "^4.23.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.63.0"
}
}