forked from prosekit/prosekit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.46 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.46 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
{
"name": "prosekit-monorepo",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@10.32.1",
"description": "Monorepo for ProseKit",
"scripts": {
"build": "turbo build",
"build:force": "turbo build --force",
"build:package": "turbo build --filter='./packages/*' --concurrency=1",
"build:website": "pnpm --filter='./website' run build",
"build:typedoc": "pnpm --filter='./website' run build:typedoc",
"build:registry": "pnpm --filter='./registry' run build",
"change": "changeset",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile",
"ci:publish:latest": "pnpm publish --access public -r --no-git-checks --tag latest",
"ci:publish:beta": "pnpm publish --access public -r --no-git-checks --tag beta",
"ci:publish:snapshot": "pnpx pkg-pr-new publish --pnpm './packages/*'",
"fix": "pnpm run gen && pnpm run fix:tsconfig && pnpm run fix:eslint && pnpm run fix:oxfmt && pnpm run fix:dprint",
"fix:oxfmt": "oxfmt --write ./registry/src/lit/",
"fix:dprint": "dprint fmt",
"fix:eslint": "eslint . --fix --cache",
"fix:tsconfig": "monorepo-typescript-references fix",
"dev": "pnpm --filter='./website' run dev",
"gen": "pnpm -r --sequential run gen",
"lint": "pnpm run lint:eslint && pnpm run lint:packages && pnpm run lint:knip",
"lint:eslint": "eslint . --cache",
"lint:packages": "pnpm -r --sequential run lint",
"lint:knip": "knip",
"preview": "pnpm --filter='./website' run preview",
"pretest": "pnpm run test:install",
"pretest:e2e": "pnpm run test:install",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage.enabled",
"test:install": "playwright install chromium",
"test:e2e": "pnpm --filter='./website' run test",
"typecheck": "tsc --build tsconfig.json"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@changesets/types": "^6.1.0",
"@ocavue/eslint-config": "^4.3.5",
"@ocavue/tsconfig": "^0.7.0",
"@size-limit/esbuild-why": "^12.0.1",
"@size-limit/preset-small-lib": "^12.0.1",
"@types/node": "catalog:",
"@vitest/coverage-v8": "catalog:",
"dprint": "^0.53.0",
"eslint": "^10.1.0",
"knip": "^6.0.4",
"monorepo-typescript-references": "^1.1.1",
"oxfmt": "^0.41.0",
"playwright": "^1.58.2",
"size-limit": "^12.0.1",
"turbo": "^2.8.20",
"typescript": "catalog:",
"vitest": "catalog:",
"wrangler": "^4.76.0"
}
}