-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
33 lines (33 loc) · 1.07 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
{
"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"
},
"devDependencies": {
"@svitejs/changesets-changelog-github-compact": "1.1.0",
"@tsconfig/strictest": "2.0.5",
"@changesets/cli": "2.27.6",
"eslint-config-dewald": "1.0.17",
"eslint": "8.57.0",
"typedoc": "0.26.2",
"typescript": "5.5.2",
"vitest": "1.6.0",
"@vitest/coverage-v8": "1.6.0",
"@vitest/ui": "1.6.0",
"vite": "5.3.2",
"vite-tsconfig-paths": "4.3.2"
}
}