-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.52 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.52 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
{
"name": "tabmesh",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "Frontend event mesh for cross-tab coordination. Like Istio for the frontend.",
"repository": {
"type": "git",
"url": "https://github.com/tabmesh/tabmesh.git"
},
"homepage": "https://tabmesh.dev",
"bugs": "https://github.com/tabmesh/tabmesh/issues",
"author": "TabMesh Contributors",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "pnpm -r build",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:e2e": "playwright test",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"build:site": "pnpm --filter '@tabmesh/playground^...' build && pnpm --filter @tabmesh/playground build && pnpm docs:build && mkdir -p docs/.vitepress/dist/playground && cp -R packages/playground/dist/. docs/.vitepress/dist/playground/",
"biome:check": "biome check .",
"biome:fix": "biome check --apply .",
"biome:ci": "biome ci .",
"typecheck": "pnpm --filter @tabmesh/core build && pnpm -r typecheck",
"prepare": "husky install"
},
"devDependencies": {
"@biomejs/biome": "^1.5.0",
"@playwright/test": "^1.59.1",
"@vitest/coverage-v8": "^1.0.0",
"fake-indexeddb": "^6.2.5",
"husky": "^8.0.0",
"lint-staged": "^14.0.0",
"playwright": "^1.40.0",
"typescript": "^5.2.0",
"vite": "^5.0.0",
"vitepress": "^1.6.4",
"vitest": "^1.0.0"
},
"packageManager": "pnpm@9.15.9"
}