-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.16 KB
/
package.json
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
{
"name": "@coinbasejs/monorepo",
"description": "Coinbase Developer Platform SDK",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm --recursive build",
"check": "biome check . --write",
"check:unsafe": "biome check . --write --unsafe",
"changeset:version": "changeset version",
"changeset:publish": "pnpm build && changeset publish",
"ci": "biome ci .",
"clean": "pnpm --recursive clean",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"format": "biome format . --write",
"lint": "biome lint . --write",
"lint:unsafe": "biome lint . --write --unsafe",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:watch": "vitest",
"typecheck": "pnpm --recursive typecheck"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@changesets/cli": "^2.27.5",
"@types/node": "^20.14.5",
"@vitest/ui": "^2.0.0",
"msw": "^2.3.1",
"rimraf": "^5.0.7",
"tsup": "^8.1.0",
"typescript": "^5.4.5",
"vitepress": "^1.2.3",
"vitest": "^2.0.0"
},
"packageManager": "pnpm@9.3.0"
}