-
-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.34 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.34 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
{
"name": "react-native-healthkit-mono",
"version": "0.0.1",
"description": "react-native-healthkit-mono",
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "bunx @biomejs/biome check",
"lint-fix": "bunx @biomejs/biome check --fix",
"create-changeset": "bunx changeset",
"swiftlint": "swiftlint",
"changeset-release": "cp README.md packages/react-native-healthkit && bunx changeset publish",
"typescript": "tsc",
"codegen": "cd packages/react-native-healthkit && bun run nitrogen && cd ../../ && bun run fix-codegen && cd apps/example/ios && pod install",
"fix-codegen": "perl -i -pe 's/Bool\\(fromCxx: cachedCxxPart\\)/cachedCxxPart.use_count() > 0/g' packages/react-native-healthkit/nitrogen/generated/ios/swift/*Spec_cxx.swift",
"test": "cd packages/react-native-healthkit && bun run test",
"prepare": "husky",
"reinstall": "rm -rf node_modules/ && find . -name 'node_modules' -type d -prune -exec rm -rf '{}' + && bun install",
"reinstall-with-nuked-lockfile": "rm -rf node_modules/ && rm bun.lock && find . -name 'node_modules' -type d -prune -exec rm -rf '{}' + && bun install"
},
"keywords": [
"react-native",
"nitro",
"healthkit"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kingstinct/react-native-healthkit.git"
},
"lint-staged": {
"*.swift": "swiftlint --fix",
"*.ts": "bunx @biomejs/biome check --fix --no-errors-on-unmatched",
"*.tsx": "bunx @biomejs/biome check --fix --no-errors-on-unmatched",
"*.js": "bunx @biomejs/biome check --fix --no-errors-on-unmatched",
"*.json": "bunx @biomejs/biome check --fix --no-errors-on-unmatched"
},
"workspaces": [
"apps/*",
"packages/*"
],
"author": "Robert Herber <robert@kingstinct.com> (https://github.com/robertherber)",
"license": "MIT",
"private": true,
"funding": {
"type": "github",
"url": "https://github.com/sponsors/kingstinct"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@changesets/cli": "^2.29.8",
"@commitlint/config-conventional": "^20.2.0",
"@types/bun": "^1.3.4",
"commitlint": "^20.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"pkg-pr-new": "^0.0.62",
"react-test-renderer": "19.1.0",
"typescript": "~5.9.3"
}
}