-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.14 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.14 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
{
"name": "react-native-calendar-ui-monorepo",
"private": true,
"keywords": [
"react-native",
"calendar",
"calendar-ui",
"headless",
"expo",
"performance",
"ios",
"android",
"web",
"date-picker",
"hooks"
],
"workspaces": [
"packages/*",
"example"
],
"scripts": {
"package": "bun --cwd ./packages/react-native-calendar-ui",
"example": "bun --cwd ./example",
"ci:lint": "bun run --filter react-native-calendar-ui ci:lint",
"ci:test": "bun run --filter react-native-calendar-ui ci:test",
"ci:build": "bun run --filter react-native-calendar-ui ci:build",
"update": "bun run ./scripts/update.ts",
"ci:local": "bun run --filter react-native-calendar-ui ci:local",
"test": "bun run ci:test",
"validate": "bun run ci:local",
"clean": "rimraf ./node_modules ./packages/*/node_modules ./example/node_modules",
"fresh-install": "bun run clean && bun install",
"publish": "cd ./packages/react-native-calendar-ui && npm publish"
},
"overrides": {
"react": "19.1.0",
"react-native": "0.81.5"
},
"devDependencies": {
"@types/bun": "^1.3.3"
}
}