-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
145 lines (145 loc) · 4.24 KB
/
package.json
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "@dongminyu/react-native-step-counter",
"displayName": "react-native-step-counter",
"version": "0.2.5",
"summary": "It is a multi-platform library that combines CoreMotionSensor from iOS with SensorEventListener from Android.",
"description": "This library provides an interface for tracking the number of steps taken by the user in a React Native app.",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/src/index.d.ts",
"react-native": "src/index.tsx",
"source": "src/index",
"files": [
"src",
"lib",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"android",
"ios",
"cpp",
"*.podspec",
"!lib/typescript/example",
"!ios/build",
"!android/build",
"!android/gradle",
"!android/gradlew",
"!android/gradlew.bat",
"!android/local.properties",
"!**/.*"
],
"scripts": {
"bootstrap": "yarn example && yarn install && yarn example pods",
"clean": "del-cli android/build example/android/build example/android/app/build example/ios/build",
"android": "yarn example android",
"ios": "yarn example ios",
"start": "yarn example start",
"example": "yarn --cwd example",
"lint": "eslint \"**/*.{js,ts,tsx}\" --fix",
"format": "prettier \"**/*.{ts,js,jsx,tsx}\" --check --write",
"prepack": "bob build",
"build:docs": "./node_modules/.bin/jsdoc -c .jsdoc-config.json",
"release:beta": "yarn release --preRelease=beta --no-npm",
"release:dry": "yarn release --dry-run --no-npm",
"release:info": "yarn release --release-version",
"release:no-dump": "yarn release --no-increment",
"release": "release-it",
"test": "jest",
"typecheck": "tsc --noEmit"
},
"keywords": [
"activity-recognition-api",
"activity-recognition",
"android",
"core-motion",
"ios",
"motion-sensor-api",
"motion-sensor",
"pedometer-api",
"pedometer",
"react-native-step-counter",
"react-native",
"sensor-manager",
"step-counter-api",
"step-counter",
"step-detection-api",
"step-detection"
],
"repository": "https://github.com/AndrewDongminYoo/react-native-step-counter",
"author": "Dongmin,Yoo <[email protected]> (https://github.com/AndrewDongminYoo)",
"license": "MIT",
"bugs": {
"url": "https://github.com/AndrewDongminYoo/react-native-step-counter/issues"
},
"homepage": "https://andrewdongminyoo.github.io/react-native-step-counter",
"publishConfig": {
"access": "public",
"tag": "latest",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@commitlint/config-conventional": "^19.0.3",
"@evilmartians/lefthook": "^1.5.2",
"@react-native/eslint-config": "^0.73.2",
"@react-native/eslint-plugin": "^0.74.0",
"@react-native/metro-config": "^0.73.5",
"@release-it/conventional-changelog": "^8.0.1",
"@rnx-kit/align-deps": "^2.2.5",
"@types/jest": "^29.5.5",
"@types/node": "20.11.25",
"@types/react": "18.2.64",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"commitlint": "^19.0.3",
"del-cli": "^5.1.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-jsdoc": "^48.2.1",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.2.1",
"pod-install": "^0.2.0",
"prettier": "^3.0.3",
"react": "18.2.0",
"react-native": "^0.73.1",
"react-native-builder-bob": "^0.23.1",
"release-it": "^17.0.1",
"turbo": "^1.12.5",
"typescript": "^5.4.2"
},
"engines": {
"node": ">= 16.0.0"
},
"packageManager": "[email protected]",
"codegenConfig": {
"name": "RNStepCounterSpec",
"type": "modules",
"jsSrcsDir": "src",
"android": {
"javaPackageName": "com.stepcounter"
}
},
"rnx-kit": {
"kitType": "library",
"alignDeps": {
"requirements": {
"development": [
],
"production": [
"[email protected] || 0.72"
]
},
"capabilities": [
"core",
"core-android",
"core-ios",
"core/metro-config",
"jest",
"react"
]
}
}
}