forked from rhinestonewtf/module-sdk-tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.11 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.11 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
{
"name": "@rhinestone/module-sdk-tutorials",
"version": "0.0.1",
"description": "Tutorials using the Module SDK",
"author": {
"name": "Rhinestone",
"url": "https://rhinestone.wtf"
},
"license": "MIT",
"scripts": {
"test": "jest --detectOpenHandles",
"test:e2e": "bun run docker:up && jest && bun run docker:down",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down"
},
"dependencies": {
"@github/webauthn-json": "^2.1.1",
"@noble/curves": "^1.6.0",
"@rhinestone/automations-sdk": "^0.0.3",
"@rhinestone/module-sdk": "^0.2.4",
"@rhinestone/orchestrator-sdk": "0.2.0-rc.6",
"@zerodev/ecdsa-validator": "^5.3.3",
"@zerodev/sdk": "^5.3.20",
"axios": "^1.7.9",
"crypto": "^1.0.1",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"permissionless": "^0.2.22",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"viem": "^2.21.51"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/jest": "^29.5.13",
"eslint": "^9.12.0",
"globals": "^15.11.0",
"typescript-eslint": "^8.8.1"
}
}