-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.18 KB
/
package.json
File metadata and controls
46 lines (46 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
39
40
41
42
43
44
45
46
{
"name": "router",
"template": "monorepo",
"version": "1.0.0",
"type": "module",
"scripts": {
"prepare": "./prepare.sh",
"lint:css": "pnpm --filter \"*\" lint:css",
"lint:js": "biome check --write --no-errors-on-unmatched",
"lint:type": "pnpm --filter \"*\" lint:type",
"build:packages": "pnpm --filter \"./packages/**\" build",
"release": "npm run build:packages && lerna publish --force-publish --exact",
"test": "pnpm --filter \"*\" test"
},
"engines": {
"lerna": ">=8",
"node": ">=22",
"pnpm": ">=10"
},
"devDependencies": {
"lint-staged": "15.2.4",
"husky": "8.0.3",
"@biomejs/biome": "1.9.4"
},
"private": false,
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"workspaces": [
"packages/*",
"examples/*"
],
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"@gez/router-vue",
"esbuild"
],
"ignoredBuiltDependencies": [
"core-js",
"swiper",
"puppeteer",
"protobufjs"
]
}
}