-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.6 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.6 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@react-analyzer/monorepo",
"version": "0.0.1-next.1",
"private": true,
"description": "Monorepo for tsl-react-[x, dom, web-api, naming-convention].",
"keywords": [
"react",
"tsl",
"tsl-react",
"tsl-react-x",
"tsl-react-dom",
"tsl-react-web-api",
"tsl-react-naming-convention"
],
"homepage": "https://github.com/react-analyzer/react-annotation",
"bugs": {
"url": "https://github.com/react-analyzer/react-annotation/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:react-analyzer/react-annotation.git"
},
"license": "MIT",
"author": "Rel1cx<dokimondex@gmail.com>",
"type": "module",
"scripts": {
"build": "pnpm run update:all && nx run-many -t build --projects=\"packages/**\"",
"build:all": "nx run-many -t build",
"build:docs": "nx run-many -t build:docs && pnpm run update:readme",
"build:pkgs": "pnpm -F \"./.pkgs/*\" run build",
"format:check": "dprint check",
"format:write": "dprint fmt",
"lint": "pnpm run lint:deps && pnpm run lint:publish && pnpm run lint:ts && pnpm run lint:examples",
"lint:deps": "pnpm dlx skott -m file-tree -e .ts -s",
"lint:examples": "pnpm m -F \"./examples/*\" run lint",
"lint:publish": "pnpm m run lint:publish",
"lint:spell": "cspell lint --relative --no-progress \"**\"",
"lint:ts": "pnpm m run lint:ts",
"sort:package-json": "pnpm m exec sort-package-json -q package.json && dprint fmt",
"update:version": "tsx ./scripts/update-version.ts"
},
"devDependencies": {
"@local/configs": "workspace:*",
"@tsconfig/node22": "^22.0.2",
"@tsconfig/strictest": "^2.0.7",
"@types/node": "^24.10.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"ansis": "^4.2.0",
"cspell": "^9.3.0",
"dprint": "^0.50.2",
"nx": "^22.0.2",
"publint": "^0.3.15",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"sort-package-json": "^3.4.0",
"tinyglobby": "^0.2.15",
"ts-pattern": "^5.9.0",
"tsl": "^1.0.26",
"tslib": "^2.8.1",
"typedoc": "^0.28.14",
"typedoc-plugin-markdown": "^4.9.0",
"typedoc-plugin-mdn-links": "^5.0.10",
"typescript": "^5.9.3",
"vitest": "^4.0.8"
},
"packageManager": "pnpm@10.20.0",
"engines": {
"node": ">=22.17.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"@swc/core",
"dprint",
"nx"
],
"overrides": {
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"ts-api-utils": "^2.1.0",
"tslib": "^2.8.1",
"typescript": "^5.9.3"
}
}
}