-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 842 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 842 Bytes
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
{
"private": true,
"description": "Mono-repo root package.json, used mainly to execute build scripts. This package is not published to npm.",
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.7.9",
"@vitest/coverage-v8": "^2.1.3",
"@vue/test-utils": "^2.4.6",
"dotenv-cli": "^7.4.2",
"eslint": "^9.13.0",
"happy-dom": "^15.7.4",
"jsdom": "^25.0.1",
"lerna": "^8.1.8",
"minipass-json-stream": "^1.0.2",
"mkdist": "^1.6.0",
"rollup": "^4.24.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0",
"vitest": "^2.1.3"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"lint": "lerna run lint",
"test": "lerna run test:coverage"
},
"engines": {
"node": ">= 18"
}
}