-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 918 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
{
"name": "ai-make",
"template": "monorepo",
"version": "1.0.0",
"type": "module",
"scripts": {
"prepare": "./prepare.sh",
"lint:js": "biome check --write --no-errors-on-unmatched",
"lint:type": "pnpm --filter \"*\" lint:type",
"lint:css": "pnpm --filter \"*\" lint:css",
"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": ">=9"
},
"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/*"
]
}