-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (45 loc) 路 2.19 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (45 loc) 路 2.19 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
{
"private": true,
"workspaces": {
"packages": [
"packages/*",
"apps/*"
],
"catalog": {
"typescript": "~6.0.3"
}
},
"scripts": {
"clean": "find . -name node_modules -type d -prune -exec rm -rf {} + && rm -f bun.lock bun.lockb && bun install --force",
"example:dev": "bun run --cwd apps/e2e bunx expo prebuild --clean && bun run --cwd apps/e2e bunx expo run ios -d",
"build": "bun run --cwd packages/react-native-screen-transitions build",
"docs:dev": "bun run --cwd packages/docs dev",
"docs:build": "bun run --cwd packages/docs build",
"docs:typecheck": "bun run --cwd packages/docs typecheck",
"maestro": "bun run --cwd apps/e2e maestro",
"maestro:verify": "bun run --cwd apps/e2e maestro:verify",
"knip": "bunx knip --workspace packages/react-native-screen-transitions",
"lint": "biome check packages/react-native-screen-transitions/src",
"typecheck": "tsc -p packages/react-native-screen-transitions/tsconfig.typecheck.json",
"release": "bun run release:stable",
"release:stable": "cd packages/react-native-screen-transitions && bunx --no-install release-it --config ../../.release-it.json --git.requireUpstream=false --no-npm.publish --no-git.tag --no-git.push --no-github.release",
"release:alpha": "cd packages/react-native-screen-transitions && RELEASE_PRERELEASE=alpha bunx --no-install release-it --config ../../.release-it.prerelease.json --preRelease=alpha --no-github.release",
"release:beta": "cd packages/react-native-screen-transitions && RELEASE_PRERELEASE=beta bunx --no-install release-it --config ../../.release-it.prerelease.json --preRelease=beta --no-github.release",
"release:rc": "cd packages/react-native-screen-transitions && RELEASE_PRERELEASE=rc bunx --no-install release-it --config ../../.release-it.prerelease.json --preRelease=rc --no-github.release",
"release:status": "gh run list --workflow release.yml --limit 5"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@commitlint/config-conventional": "^21.0.1",
"@release-it/conventional-changelog": "^11.0.1",
"@types/bun": "^1.3.14",
"commitlint": "^21.0.1",
"lefthook": "^2.1.6",
"release-it": "^20.2.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}