first commit

This commit is contained in:
Matt Kane
2026-04-01 10:44:22 +01:00
commit 43fcb9a131
1789 changed files with 395041 additions and 0 deletions

57
package.json Normal file
View File

@@ -0,0 +1,57 @@
{
"name": "emdash-workspace",
"private": true,
"type": "module",
"version": "1.0.0",
"description": "Agent-portable reimplementation of WordPress on Astro",
"scripts": {
"typecheck": "pnpm run --filter './packages/**' typecheck",
"typecheck:demos": "pnpm run --workspace-concurrency=1 --filter './demos/*' --filter '!@emdashcms/demo-cloudflare' typecheck",
"typecheck:templates": "pnpm run --workspace-concurrency=1 --filter './templates/*' typecheck",
"check": "pnpm run typecheck && pnpm run --filter './packages/*' check",
"test": "pnpm run --filter './packages/*' test",
"test:unit": "pnpm run --filter emdash --filter @emdashcms/auth --filter @emdashcms/blocks --filter @emdashcms/gutenberg-to-portable-text --filter @emdashcms/marketplace test",
"test:browser": "pnpm run --filter @emdashcms/admin test",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"build": "pnpm run --filter './packages/**' build",
"format": "oxfmt --ignore-path .gitignore && prettier --write .",
"format:check": "oxfmt --ignore-path .gitignore --check && prettier --check .",
"format:astro": "prettier --write .",
"lint": "oxlint --type-aware",
"lint:quick": "oxlint -f json",
"lint:json": "oxlint --type-aware -f json",
"lint:fix": "oxlint --type-aware --fix",
"knip": "knip --no-exit-code --exclude unlisted,unresolved,exports,types,duplicates",
"new": "create-emdash",
"screenshots": "node scripts/screenshot-all-templates.mjs"
},
"keywords": [],
"author": "Matt Kane",
"license": "MIT",
"devDependencies": {
"@axe-core/playwright": "^4.11.1",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@e18e/eslint-plugin": "^0.2.0",
"@playwright/test": "^1.58.0",
"@types/node": "catalog:",
"@typescript/native-preview": "^7.0.0-dev",
"emdash": "workspace:*",
"knip": "^5.84.1",
"oxfmt": "^0.34.0",
"oxlint": "^1.49.0",
"oxlint-tsgolint": "^0.15.0",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"typescript": "6.0.0-beta"
},
"packageManager": "pnpm@10.28.0",
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild",
"workerd"
]
}
}