-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 972 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 972 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
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "ydbjs",
"version": "0.0.0",
"private": true,
"type": "module",
"workspaces": [
"docs",
"e2e/*",
"examples/*",
"packages/*",
"third-parties/*"
],
"engines": {
"node": ">=20.19.0",
"npm": ">=10"
},
"engineStrict": true,
"scripts": {
"build": "turbo run build --output-logs=errors-only",
"attw": "turbo run attw",
"test": "vitest --run",
"lint": "oxlint --fix",
"format": "oxfmt --write",
"version": "npx changeset version && npm install",
"publish": "npx changeset publish",
"prepare": "git config core.hooksPath scripts/hooks"
},
"dependencies": {
"@types/node": "^25.3.3"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.1.0",
"@vitest/ui": "^4.1.0",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"turbo": "^2.8.12",
"typescript": "^5.9.3",
"vitest": "^4.1.0",
"zx": "^8.8.5"
},
"overrides": {
"@grpc/proto-loader": "npm:dry-uninstall",
"esbuild": "^0.27.3"
},
"packageManager": "npm@11.5.1"
}