-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.18 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
{
"name": "moderndash-monorepo",
"private": true,
"workspaces": [
"website",
"package",
"benchmark"
],
"type": "module",
"engines": {
"node": ">=20.x.x",
"npm": ">=9.x.x"
},
"scripts": {
"build:docs-data": "typedoc --options typedoc.json && typedoc-json-parser --json ./website/src/assets/extractedTypes.json --verbose",
"build:docs": "npm run build --workspace=package && npm run build:docs-data && npm run build --workspace=website",
"benchmark": "npm run build --workspace=package && npm run bench --workspace=benchmark",
"lint": "eslint ."
},
"browserslist": [
">10% and not dead"
],
"devDependencies": {
"@antfu/eslint-config": "latest",
"@changesets/cli": "2.30.0",
"@rollup/plugin-swc": "0.4.0",
"@svitejs/changesets-changelog-github-compact": "1.2.0",
"@swc/core": "1.15.18",
"@tsconfig/strictest": "2.0.8",
"@vitest/coverage-v8": "4.1.0",
"@vitest/ui": "4.1.0",
"eslint": "10.0.3",
"typedoc": "0.28.17",
"typescript": "5.9.3",
"vite": "8.0.0",
"vitest": "4.1.0"
}
}