-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 750 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 750 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
{
"name": "radix-web3.js",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"test": "turbo test",
"publish-packages": "turbo run build && changeset version && changeset publish",
"ci:version": "changeset version",
"ci:publish": "pnpm run build && changeset publish",
"format": "biome format --write ./packages/**/**/*.ts",
"lint": "biome lint --write ./packages/**/**/*.ts",
"check-types": "biome check --write ./packages/**/**/*.ts"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "^2.29.8",
"prettier": "^3.7.4",
"turbo": "^2.6.2",
"typescript": "5.5.4"
},
"packageManager": "pnpm@10.15.0",
"engines": {
"node": ">=20"
}
}