-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.55 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
{
"name": "scrollsheet-repo",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"docs"
],
"scripts": {
"build": "bun run scripts/gen-css.ts && tsdown && bun run scripts/emit-css.ts && cp README.md LICENSE packages/scrollsheet/",
"test": "bun test tests/unit",
"test:e2e": "playwright test",
"typecheck": "tsc --noEmit",
"dev": "bun run --cwd docs dev",
"test:e2e:fast": "playwright test --project=chromium-mobile",
"test:site": "playwright test -c playwright.site.config.ts",
"verify": "bun run typecheck && bun run check:compat && bun run build && bun test tests/unit && bun run test:e2e:fast && bun run size && bun run pack:check && bun run check:registry",
"gen:css": "bun run scripts/gen-css.ts",
"size": "bun run scripts/check-size.ts",
"pack:check": "bun run scripts/check-pack.ts",
"check:registry": "bun run scripts/check-registry.ts",
"check:dialog-share": "bun run scripts/check-dialog-share.ts",
"check:compat": "bun run scripts/check-compat.ts"
},
"devDependencies": {
"@happy-dom/global-registrator": "^20.11.2",
"@playwright/test": "^1.62.1",
"@types/bun": "^1.3.14",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@typescript-eslint/parser": "^8.67.0",
"browserslist": "^4.28.8",
"doiuse": "^6.0.6",
"eslint": "^10.8.1",
"eslint-plugin-compat": "^7.0.2",
"happy-dom": "^20.11.2",
"lightningcss": "^1.33.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"tsdown": "^0.22.14",
"typescript": "^6.0.3"
}
}