-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.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
{
"name": "astro-visual-editor-workspace",
"version": "0.1.0",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"demo"
],
"scripts": {
"brand:sync": "node scripts/sync-brand-assets.mjs",
"build": "npm run build --workspace @opacedev/astro-visual-editor",
"check": "npm run check --workspace @opacedev/astro-visual-editor && npm run check --workspace astro-visual-editor-demo",
"check:production-isolation": "node scripts/check-production-isolation.mjs",
"dev": "npm run dev --workspace astro-visual-editor-demo",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint packages demo scripts tests playwright.config.ts --max-warnings 0",
"pack:check": "npm pack --workspace @opacedev/astro-visual-editor --dry-run",
"release:candidate:check": "node scripts/check-release-candidate.mjs",
"release:fixtures:capture": "node scripts/capture-release-fixtures.mjs",
"release:finalize": "node scripts/finalize-release-candidate.mjs",
"release:preflight": "node scripts/release-preflight.mjs beta",
"test:release": "node --test scripts/check-release-candidate.test.mjs",
"test": "npm run test --workspace @opacedev/astro-visual-editor",
"test:e2e": "playwright test",
"test:ci": "npm run release:candidate:check && npm run test:release && npm run format:check && npm run lint && npm run build && npm run test && npm run check && npm run check:production-isolation && npm run pack:check",
"test:all": "npm run test:ci && npm run test:e2e"
},
"engines": {
"node": ">=22.12.0"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@axe-core/playwright": "^4.10.2",
"@playwright/test": "^1.54.2",
"eslint": "^9.32.0",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"prettier-plugin-astro": "^0.14.1",
"typescript-eslint": "^8.38.0"
},
"packageManager": "npm@11.5.2"
}