-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.39 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.39 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
{
"name": "root",
"version": "0.0.0",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"build": "pnpm -r --stream build",
"lint": "biome check && markdownlint **/*.md --ignore **/node_modules",
"fix": "biome check --fix",
"coverage": "pnpm -r --no-bail --workspace-concurrency 1 coverage",
"test": "pnpm --filter annotation-comments test",
"test-short": "pnpm --filter annotation-comments test-short",
"test-watch": "pnpm --filter annotation-comments test-watch",
"validate": "pnpm i && pnpm build && pnpm test && typedoc && pnpm lint",
"bump": "changeset version && pnpm i",
"release": "pnpm validate && pnpm bump && changeset publish",
"ci-version": "changeset version && pnpm install --no-frozen-lockfile && pnpm fix",
"ci-publish": "pnpm build && pnpm test && pnpm lint && changeset publish"
},
"workspaces": ["packages/*"],
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "^2.27.12",
"@types/node": "^20.14.15",
"@vitest/coverage-v8": "^3.0.4",
"markdownlint-cli": "^0.44.0",
"remark-link-rewrite": "^1.0.7",
"tsup": "^8.3.6",
"typedoc": "^0.27.6",
"typedoc-plugin-markdown": "^4.4.1",
"typedoc-plugin-remark": "^1.2.4",
"typescript": "^5.7.3",
"vitest": "^3.0.4"
},
"engines": {
"node": ">=18.14.1",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@9.15.4"
}