-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.47 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.47 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
65
66
67
68
{
"name": "react-native-attitude",
"title": "React Native Attitude",
"version": "3.0.0",
"description": "Obtain device attitude (roll, pitch and heading)",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
},
"files": [
"lib",
"src",
"android/build.gradle",
"android/src",
"ios/*.h",
"ios/*.m",
"ios/*.mm",
"ios/*.swift",
"ios/*.cpp",
"react-native-attitude.podspec",
"react-native.config.js"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepare": "npm run build",
"test": "echo \"No tests specified\" && exit 0"
},
"homepage": "https://github.com/dpyeates/react-native-attitude#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/dpyeates/react-native-attitude.git"
},
"bugs": {
"url": "https://github.com/dpyeates/react-native-attitude/issues"
},
"keywords": [
"react-native",
"attitude",
"pitch",
"roll",
"heading",
"ahrs"
],
"author": {
"name": "Darren Yeates",
"email": "apps@sensorworks.co.uk"
},
"license": "MIT",
"peerDependencies": {
"react": "*",
"react-native": ">=0.82"
},
"devDependencies": {
"typescript": "^5.6.3"
},
"codegenConfig": {
"name": "RNAttitudeSpec",
"type": "modules",
"jsSrcsDir": "src",
"android": {
"javaPackageName": "com.sensorworks.rnattitude"
}
}
}