-
-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 2.08 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 2.08 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
47
48
49
{
"name": "bati",
"private": true,
"type": "module",
"version": "0.0.592",
"description": "@batijs monorepo",
"scripts": {
"new-boilerplate": "tsx ./scripts/new-boilerplate.ts",
"screenshot": "node ./scripts/screenshot.js",
"release": "pnpm -r prerelease && bumpp && pnpm run publish",
"release:ci": "pnpm -r prerelease && bumpp -y && pnpm run publish",
"release:beta": "pnpm -r prerelease && bumpp --preid beta prerelease && pnpm run publish --no-git-checks --tag beta",
"release:local": "pnpm -r prerelease && bumpp -y --no-push --no-tag --no-commit --preid local prerelease && pnpm run publish --no-git-checks --tag local --registry http://localhost:4873",
"publish": "pnpm run build && pnpm -r publish",
"check-types": "turbo run check-types",
"test": "turbo run test",
"test:e2e": "pnpm run build && pnpm --filter \"@batijs/tests\" test:e2e",
"test:e2e:workflow-write": "pnpm test:e2e workflow-write",
"cli": "pnpm run build && rimraf /tmp/bati-app && node packages/cli/dist/index.js /tmp/bati-app",
"build": "turbo run @batijs/core#build @batijs/compile#build @batijs/build#build @batijs/features#build --no-daemon && turbo run build --no-daemon && pnpm run format",
"build:force": "turbo run @batijs/core#build @batijs/compile#build @batijs/build#build @batijs/features#build --no-daemon --force && turbo run build --no-daemon --force && pnpm run format",
"lint": "biome lint",
"format": "biome format --write",
"check": "biome check --write",
"reset": "git clean -Xdf && pnpm install && pnpm run build"
},
"keywords": [],
"author": "Joël Charles <joel.charles91@gmail.com>",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@vikejs/biome-config": "^2.0.1",
"bumpp": "^10.4.1",
"citty": "^0.2.1",
"globals": "^17.4.0",
"rimraf": "^6.1.3",
"tsx": "^4.21.0",
"turbo": "^2.8.12",
"typescript": "^5.9.3"
},
"optionalDependencies": {
"browserless": "^10.10.3",
"puppeteer": "^24.37.5"
},
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.24.0"
}