-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.89 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.89 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
61
62
63
64
65
66
67
68
69
70
{
"name": "flavian",
"version": "1.12.0",
"private": true,
"description": "Claude Code-integrated WordPress development template. The repository version is tracked in git tags + .release-please-manifest.json (source of truth) and mirrored into the version field above by release-please.",
"license": "MIT",
"homepage": "https://github.com/PMDevSolutions/Flavian",
"repository": {
"type": "git",
"url": "git+https://github.com/PMDevSolutions/Flavian.git"
},
"bugs": {
"url": "https://github.com/PMDevSolutions/Flavian/issues"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@9.15.0",
"type": "module",
"bin": {
"flavian": "./bin/flavian.mjs"
},
"scripts": {
"flavian": "node bin/flavian.mjs",
"init": "node scripts/init.mjs",
"test:init": "node --test \"tests/init/**/*.test.mjs\"",
"test:pipeline": "pnpm --filter @flavian/pipeline test",
"pipeline:ingest": "node packages/pipeline/bin/ingest.mjs",
"pipeline:stage-assets": "node packages/pipeline/bin/stage-assets.mjs",
"test:canva-e2e": "node --test tests/canva-e2e/*.test.mjs",
"test:headless-e2e": "node --test tests/headless-e2e/*.test.mjs",
"visual:capture": "node tests/visual/capture.mjs",
"visual:diff": "node scripts/visual-diff.js --batch tests/visual/actual tests/visual/baselines --output-dir tests/visual/diffs --threshold 0.005 --json > tests/visual/report.json && node tests/visual/print-report.mjs tests/visual/report.json",
"visual:update": "bash scripts/visual-update-baselines.sh",
"visual:seed": "bash tests/visual/seed.sh",
"lighthouse:run": "lhci autorun --config=./lighthouserc.json",
"lighthouse:collect": "lhci collect --config=./lighthouserc.json",
"lighthouse:assert": "lhci assert --config=./lighthouserc.json",
"lighthouse:open": "lhci open",
"lint:commits": "commitlint --from=$(git merge-base origin/main HEAD) --to=HEAD",
"lint:commits:last": "commitlint --from=HEAD~1 --to=HEAD",
"test:visual": "pnpm visual:diff",
"test:lighthouse": "pnpm lighthouse:run",
"playwright:install": "playwright install --with-deps chromium",
"scaffold:block": "bash scripts/scaffold-block.sh",
"smoke:block": "bash scripts/smoke-block.sh",
"gui:dev": "pnpm --filter @flavian/gui dev",
"gui:build": "pnpm --filter @flavian/gui build",
"gui:test": "pnpm --filter @flavian/gui test",
"gui:lint": "pnpm --filter @flavian/gui lint",
"gui:typecheck": "pnpm --filter @flavian/gui typecheck",
"gui:package": "pnpm --filter @flavian/gui package"
},
"devDependencies": {
"@clack/prompts": "^0.7.0",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@lhci/cli": "^0.14.0",
"pixelmatch": "^7.1.0",
"playwright": "1.60.0",
"pngjs": "^7.0.0"
},
"pnpm": {
"overrides": {
"tmp": ">=0.2.6",
"uuid": ">=11.1.1",
"cookie": ">=0.7.0"
}
}
}