-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.29 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.29 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
{
"name": "vk-io-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=12.20.0"
},
"type": "module",
"devDependencies": {
"@biomejs/biome": "^2.3.2",
"@rollup/plugin-json": "^6.1.0",
"@types/node": "^24.9.2",
"rollup": "^4.52.5",
"rollup-plugin-typescript2": "^0.36.0",
"tsx": "^4.20.6",
"typedoc": "^0.28.14",
"typescript": "^5.9.3",
"vitepress": "^1.6.4"
},
"scripts": {
"prepare": "npm run rollup:build && npm run test",
"build": "npm run rollup:build",
"watch": "npm run rollup:watch",
"clean": "rm -rf ./packages/*/lib",
"rollup:build": "NODE_ENV=production rollup -c rollup.config.js",
"rollup:watch": "npm run rollup:build -- -w",
"docs:dev": "vitepress dev docs",
"docs:build": "sh scripts/deploy-docs.sh",
"docs:preview": "vitepress preview docs",
"test": "npm run check && npm run test:node",
"test:node": "node --import tsx --test packages/*/test/*.test.ts",
"lint": "npm run lint:biome",
"lint:biome": "biome lint .",
"check": "biome check .",
"fmt": "biome format --write .",
"fix": "npm run check -- --write ."
}
}