-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 852 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 852 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
{
"name": "erc7730-sdk-monorepo",
"private": true,
"description": "ERC-7730 Clear Signing SDK - Decode blockchain transactions into human-readable format",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"test": "turbo test",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"clean": "turbo clean && rm -rf node_modules/.cache",
"typecheck": "tsc -b",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"simple-git-hooks": "^2.11.0",
"turbo": "^2.0.0",
"typescript": "^5.3.3",
"tsx": "^4.7.0"
},
"simple-git-hooks": {
"pre-commit": "npx biome check --staged --no-errors-on-unmatched"
},
"packageManager": "pnpm@10.28.0",
"engines": {
"node": ">=18"
},
"version": "0.0.1"
}