forked from emdash-cms/emdash
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.13 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.13 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
{
"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 !@emdash-cms/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 @emdash-cms/auth --filter @emdash-cms/blocks --filter @emdash-cms/gutenberg-to-portable-text --filter @emdash-cms/marketplace test",
"test:browser": "pnpm run --filter @emdash-cms/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"
]
}
}