-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 991 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 991 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
{
"name": "@objekt.sh/cli",
"license": "AGPL-3.0-only",
"version": "0.4.16",
"repository": {
"type": "git",
"url": "https://github.com/0xLighthouse/objekt-cli"
},
"type": "module",
"files": [
"dist"
],
"bin": {
"objekt": "./dist/bin.js"
},
"scripts": {
"dev": "tsx src/bin.ts",
"build": "tsup src/bin.ts --format esm",
"release:dev": "tsup src/bin.ts --format esm && pnpm link --global",
"lint": "biome check",
"test": "vitest run",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@ensdomains/ensjs": "4.0.2",
"@ensmetadata/cli": "^0.4.1",
"@open-wallet-standard/core": "^1.2.4",
"@x402/evm": "^2.8.0",
"@x402/fetch": "^2.8.0",
"incur": "^0.3.13",
"viem": "^2.23.10"
},
"devDependencies": {
"@biomejs/biome": "^2.3.5",
"@objekt.sh/ecies": "workspace:*",
"@objekt/shared": "workspace:*",
"tsup": "^8",
"tsx": "^4",
"typescript": "^5.8.2",
"vitest": "3.0.8"
}
}