-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
35 lines (35 loc) · 1014 Bytes
/
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
34
35
{
"name": "gez",
"template": "monorepo",
"version": "1.0.0",
"type": "module",
"scripts": {
"prepare": "./prepare.sh",
"lint:js": "biome check --write --no-errors-on-unmatched",
"lint:css": "lerna run lint:css",
"lint:type": "pnpm --filter \"*\" lint:type",
"test": "pnpm --filter \"*\" test",
"build": "pnpm --filter \"*\" build",
"build:packages": "pnpm --filter \"./packages/**\" build",
"release": "npm run build:packages && lerna publish --force-publish --exact",
"deploy": "npm run build && ./deploy.sh"
},
"devDependencies": {
"lint-staged": "15.2.4",
"husky": "8.0.3",
"@biomejs/biome": "1.9.4"
},
"private": false,
"workspaces": [
"packages/*",
"examples/*"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"engines": {
"lerna": ">=8.1.9",
"node": ">=22.11.0",
"pnpm": ">=9.13.2"
}
}