-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.67 KB
/
package.json
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
{
"name": "root",
"version": "0.0.0",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"build": "pnpm -r --stream build",
"lint": "eslint . && markdownlint **/*.md --ignore **/node_modules",
"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 && pnpm lint",
"bump": "changeset version && pnpm i",
"release": "pnpm validate && pnpm bump && changeset publish",
"ci-version": "changeset version && pnpm install --no-frozen-lockfile",
"ci-publish": "pnpm build && pnpm test && pnpm lint && changeset publish"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.0",
"@types/node": "^20.14.15",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"@vitest/coverage-v8": "^2.1.1",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"markdownlint-cli": "^0.41.0",
"prettier": "^3.3.3",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vitest": "^2.1.1"
},
"engines": {
"node": "^14.15.0 || >=16.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "[email protected]+sha512.499434c9d8fdd1a2794ebf4552b3b25c0a633abcee5bb15e7b5de90f32f47b513aca98cd5cfd001c31f0db454bc3804edccd578501e4ca293a6816166bbd9f81"
}