-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.05 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.05 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
{
"name": "drift",
"version": "0.0.0",
"license": "Apache-2.0",
"workspaces": [
"contracts",
"examples/*",
"packages/*",
"docs"
],
"type": "module",
"private": true,
"scripts": {
"build": "turbo run build --filter=./packages/*",
"watch": "turbo run watch --filter=./packages/*",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"format": "biome format --write",
"lint": "biome lint --diagnostic-level error .",
"lint:fix": "yarn lint --fix",
"lint:fix:unsafe": "yarn lint:fix --unsafe",
"typecheck": "turbo run typecheck",
"typecheck:watch": "turbo run typecheck:watch",
"release": "sh scripts/release.sh",
"reset-node-modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' + && yarn cache clean && yarn"
},
"devDependencies": {
"@biomejs/biome": "^2.2.4",
"@changesets/cli": "^2.29.7",
"turbo": "^2.5.6",
"typescript": "^5.9.2"
},
"resolutions": {
"typescript": "^5.9.2",
"viem": "^2.37.6"
},
"packageManager": "yarn@1.22.21"
}