-
-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) 路 1.94 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) 路 1.94 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "bati",
"private": true,
"type": "module",
"version": "0.0.675",
"description": "@batijs monorepo",
"workspaces": [
"packages/*",
"boilerplates/*",
"website"
],
"trustedDependencies": [
"@parcel/watcher",
"@prisma/engines",
"@sentry/cli",
"better-sqlite3",
"esbuild",
"nx",
"prisma",
"puppeteer",
"sharp",
"workerd",
"@browserless/goto",
"re2"
],
"scripts": {
"new-boilerplate": "bun ./scripts/new-boilerplate.ts",
"screenshot": "node ./scripts/screenshot.js",
"release": "bumpp && bun run publish",
"release:ci": "bumpp -y && bun run publish --provenance",
"release:beta": "bumpp --preid beta prerelease && bun run publish --tag beta --provenance",
"publish": "bun run build && bun run scripts/publish.ts",
"check-types": "nx run-many --target=check-types",
"test": "nx run-many --target=test",
"test:e2e": "bun run build && bun packages/tests/e2e/runner.ts",
"cli": "bun run build && rimraf /tmp/bati-app && node packages/cli/dist/index.js --force /tmp/bati-app",
"build": "nx run-many --target=build",
"build:force": "nx run-many --target=build --skip-nx-cache",
"lint": "biome lint",
"format": "biome format --write",
"check": "biome check --write",
"reset": "git clean -Xdf && bun install && bun run build"
},
"keywords": [],
"author": "Jo毛l Charles <joel.charles91@gmail.com>",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "2.5.7",
"@vikejs/biome-config": "^2.0.1",
"bumpp": "^12.2.0",
"citty": "^0.2.2",
"globals": "^17.9.0",
"nx": "^23.1.1",
"rimraf": "^6.1.3",
"tar": "^7.5.22",
"typescript": "^6.0.3",
"unrun": "^0.3.1"
},
"optionalDependencies": {
"browserless": "^13.7.1",
"puppeteer": "^25.5.0"
},
"overrides": {
"typescript": "^6.0.3"
},
"engines": {
"node": ">=22",
"bun": ">=1.3.11"
},
"packageManager": "bun@1.3.11"
}