-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.81 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.81 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
88
89
90
91
92
93
94
{
"name": "@react-analyzer/monorepo",
"version": "0.0.11",
"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/tsl-react",
"bugs": {
"url": "https://github.com/react-analyzer/tsl-react/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:react-analyzer/tsl-react.git"
},
"license": "MIT",
"author": "Rel1cx",
"type": "module",
"scripts": {
"build": "pnpm run update:version && pnpm run build:packages && pnpm run build:docs",
"build:docs": "pnpm -r --stream --filter \"./packages/**\" run build:docs",
"build:packages": "pnpm -r --stream --filter \"./packages/**\" run build",
"build:pkgs": "pnpm -r --stream --filter \"./.pkgs/*\" run build",
"format:check": "dprint check",
"format:write": "dprint fmt",
"inspect:deps": "pnpm dlx skott -e .ts",
"lint": "pnpm run lint:deps && pnpm run lint:publish && pnpm run lint:ts",
"lint:deps": "pnpm dlx skott -m file-tree -e .ts -s",
"lint:publish": "pnpm m run lint:publish",
"lint:spell": "cspell lint --relative --no-progress \"**\"",
"lint:ts": "pnpm tsl && pnpm m run lint:ts",
"prepare": "pnpm run build",
"sort:package-json": "pnpm m exec sort-package-json -q package.json && dprint fmt",
"test": "vitest run --logHeapUsage",
"update:version": "tsx ./scripts/update-version.ts"
},
"devDependencies": {
"@effect/language-service": "^0.77.0",
"@local/configs": "workspace:*",
"@tsconfig/node24": "^24.0.4",
"@tsconfig/strictest": "^2.0.8",
"@types/node": "^25.3.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"ansis": "^4.2.0",
"cspell": "^9.7.0",
"dedent": "^1.7.1",
"dprint": "^0.52.0",
"effect": "^3.19.19",
"publint": "^0.3.17",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"sort-package-json": "^3.6.1",
"tinyexec": "^1.0.2",
"tinyglobby": "^0.2.15",
"ts-pattern": "^5.9.0",
"tsdown": "^0.21.0-beta.2",
"tsl": "^1.0.29",
"tsl-dx": "^0.9.0",
"tslib": "^2.8.1",
"tsx": "latest",
"type-fest": "^5.4.4",
"typedoc": "^0.28.17",
"typedoc-plugin-markdown": "^4.10.0",
"typedoc-plugin-mdn-links": "^5.1.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"packageManager": "pnpm@10.30.3",
"engines": {
"node": ">=24.6.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"@swc/core",
"dprint"
],
"overrides": {
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tslib": "^2.8.1",
"typescript": "^5.9.3"
}
}
}