-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.53 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
{
"name": "react-native-data-scanner-repo",
"private": true,
"license": "MIT",
"packageManager": "bun@1.3.14",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"specs": "bun run --cwd packages/react-native-data-scanner specs",
"specs:check": "./scripts/check-generated.sh",
"typecheck": "bun run typecheck:package && bun run build:package && bun run typecheck:example",
"typecheck:package": "bun run --cwd packages/react-native-data-scanner typecheck",
"build:package": "bun run --cwd packages/react-native-data-scanner typescript",
"typecheck:example": "bun run --cwd apps/example tsc --noEmit",
"format": "bun run format:typescript && bun run format:swift && bun run format:kotlin",
"format:typescript": "bun run --cwd packages/react-native-data-scanner lint",
"format:swift": "./scripts/format-swift.sh",
"format:kotlin": "./scripts/format-kotlin.sh",
"lint": "bun run lint:typescript && bun run lint:swift && bun run lint:kotlin",
"lint:typescript": "bun run --cwd packages/react-native-data-scanner lint-ci",
"lint:swift": "./scripts/lint-swift.sh",
"lint:kotlin": "./scripts/lint-kotlin.sh",
"ci": "bun run lint && bun run typecheck && bun run specs:check",
"release": "./scripts/release.sh",
"example": "bun run --cwd apps/example",
"example:android": "bun run --cwd apps/example android",
"example:ios": "bun run --cwd apps/example ios",
"example:start": "bun run --cwd apps/example start"
},
"devDependencies": {
"release-it": "^20.2.0"
}
}