-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.63 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
57
58
59
60
61
62
{
"name": "openwallet",
"private": true,
"version": "0.0.0",
"license": "MIT",
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "pnpm -r run build",
"test": "vitest run",
"lint": "eslint . && pnpm -r run lint",
"lint:fix": "eslint . --fix",
"typecheck": "pnpm -r run typecheck && tsc -p test/integration/tsconfig.json --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"knip": "knip",
"check": "pnpm run format:check && pnpm run build && pnpm run lint && pnpm run typecheck && pnpm run knip && pnpm run test",
"clean": "pnpm -r exec rm -rf dist",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^24.0.0",
"@openwallet/chain-bitcoin": "workspace:*",
"@openwallet/chain-evm": "workspace:*",
"@openwallet/chain-solana": "workspace:*",
"@openwallet/core": "workspace:*",
"bitcoinjs-lib": "^7.0.1",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-unicorn": "^72.0.0",
"husky": "^9.1.7",
"knip": "^6.27.0",
"lint-staged": "^17.1.1",
"prettier": "^3.4.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.0.0",
"viem": "^2.55.4",
"vitest": "^4.1.10"
},
"pnpm": {
"overrides": {
"typescript": "^6.0.3"
},
"onlyBuiltDependencies": [
"bigint-buffer",
"bufferutil",
"utf-8-validate"
]
},
"lint-staged": {
"*.{ts,mts,cts,js,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
}
}