-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.57 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
{
"name": "@ytspar/devbar-monorepo",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ytspar/devbar.git"
},
"description": "devbar development toolbar and sweetlink AI debugging toolkit",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "pnpm -r build",
"typecheck": "pnpm -r typecheck",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"clean": "pnpm -r clean",
"dev": "pnpm --filter playground dev",
"dev:all": "concurrently -n build,dev -c blue,green \"pnpm build --watch\" \"pnpm dev\"",
"preview": "pnpm --filter playground preview",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:update": "playwright test --update-snapshots"
},
"devDependencies": {
"@biomejs/biome": "^2.4.13",
"@playwright/test": "^1.59.1",
"@vitest/coverage-v8": "^4.1.5",
"concurrently": "^9.2.1",
"happy-dom": "^20.9.0",
"playwright": "^1.59.1",
"typescript": "^5.9.3",
"ultracite": "^7.6.2",
"vitest": "^4.1.5"
},
"version": "0.0.0",
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@9.15.9",
"pnpm": {
"overrides": {
"rollup": ">=4.59.0",
"picomatch": "^4.0.4",
"postcss": "^8.5.12",
"brace-expansion": "^2.0.2",
"vite@>=7.0.0 <7.3.2": ">=7.3.2 <8"
}
}
}