-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.65 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
{
"name": "wallet-cli",
"version": "0.6.7",
"description": "Tempo wallet and request CLI extension package",
"homepage": "https://github.com/tempoxyz/wallet-cli#readme",
"bugs": {
"url": "https://github.com/tempoxyz/wallet-cli/issues"
},
"license": "MIT OR Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/tempoxyz/wallet-cli.git"
},
"bin": {
"tempo-request": "./dist/request-cli.js",
"tempo-wallet": "./dist/cli.js"
},
"type": "module",
"scripts": {
"build": "tsc -b",
"bundle": "tsx scripts/package.ts --bundle-only",
"changelog:notes": "tsx scripts/changelog.ts notes",
"changelog:validate": "tsx scripts/changelog.ts validate",
"changelog:version": "tsx scripts/changelog.ts version",
"check": "pnpm check:code && pnpm check:types && pnpm test:types && pnpm test",
"check:code": "vp check --fix",
"check:format": "vp fmt --check",
"check:lint": "vp lint",
"check:types": "pnpm typecheck",
"dev": "node --import tsx src/cli.ts",
"format": "vp fmt",
"lint": "vp lint --fix",
"package": "tsx scripts/package.ts",
"start": "node dist/cli.js",
"typecheck": "tsc -b --noEmit",
"test:types": "tsc -p tsconfig.test.json --noEmit",
"test": "vitest run"
},
"dependencies": {
"accounts": "0.14.11",
"incur": "0.4.8",
"mppx": "0.8.9",
"undici": "8.5.0",
"viem": "2.54.0"
},
"devDependencies": {
"@types/node": "25.9.2",
"@yao-pkg/pkg": "6.20.0",
"esbuild": "0.28.1",
"tsx": "4.22.4",
"typescript": "6.0.3",
"vitest": "4.1.8",
"vp": "npm:vite-plus@0.1.24"
},
"packageManager": "pnpm@11.0.8"
}