-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 2.36 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
57
58
59
60
{
"name": "@ailuracode/alpinejs-toolkit",
"private": true,
"author": "ailuracode",
"type": "module",
"packageManager": "pnpm@11.8.0",
"scripts": {
"architecture:check": "node scripts/architecture-check.mjs",
"build": "pnpm -r --if-present build",
"build:demo": "pnpm --filter alpinejs-toolkit-demo build",
"changeset": "changeset",
"changeset:check": "node scripts/changeset-check.mjs",
"ci:changes": "node scripts/ci-changes.mjs",
"dev:demo": "pnpm --filter alpinejs-toolkit-demo dev",
"format": "biome format --write .",
"graph": "pnpm dlx serve@14 graphify-out --listen 4321 --no-clipboard",
"lint": "biome check --assist-enabled=true .",
"lint:fix": "biome check --write --assist-enabled=true .",
"pack:check": "pnpm run build && node scripts/pack-check.mjs",
"playwright:install": "playwright install chromium",
"playwright:install:all": "playwright install chromium firefox webkit",
"prepare": "husky",
"release": "pnpm run build && pnpm test && changeset publish",
"repo:check": "node scripts/repo-check.mjs",
"repo:check:built": "node scripts/repo-check.mjs --built",
"size": "pnpm -r --if-present run size",
"size:check": "pnpm run build && pnpm run size",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:coverage:report": "node scripts/coverage-report.mjs --baseline coverage/baseline.json --write-summary",
"test:e2e": "node scripts/e2e-run.mjs",
"test:e2e:affected": "node scripts/e2e-run.mjs --affected",
"test:e2e:full": "E2E_BROWSER_PROFILE=full pnpm run test:e2e",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"version": "changeset version"
},
"lint-staged": {
"*.{ts,js,mjs,cjs}": "biome check --assist-enabled=true --no-errors-on-unmatched",
"*.{json,md,yaml,yml}": "biome check --no-errors-on-unmatched"
},
"devDependencies": {
"@biomejs/biome": "^2.5.3",
"@changesets/cli": "^2.31.0",
"@playwright/test": "^1.55.0",
"@size-limit/esbuild": "^12.1.0",
"@size-limit/file": "^12.1.0",
"@types/alpinejs": "^3.13.11",
"@vitest/coverage-v8": "^4.1.10",
"alpinejs": "^3.15.12",
"esbuild": "^0.28.1",
"happy-dom": "^20.10.6",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"size-limit": "^12.1.0",
"tsup": "^8.5.0",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
}
}