-
-
Notifications
You must be signed in to change notification settings - Fork 775
/
Copy pathpackage.json
116 lines (116 loc) · 3.41 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
{
"name": "react-native-ble-manager",
"version": "12.1.2",
"description": "A BLE module for react native.",
"homepage": "https://innoveit.github.io/react-native-ble-manager/",
"repository": {
"type": "git",
"url": "https://github.com/innoveit/react-native-ble-manager.git"
},
"bugs": {
"url": "https://github.com/innoveit/react-native-ble-manager/issues"
},
"keywords": [
"react-native",
"android",
"ios",
"ble",
"bluetooth",
"low energy"
],
"license": "Apache-2.0",
"author": {
"name": "Innove",
"url": "https://github.com/innoveit"
},
"main": "dist/cjs/index.js",
"types": "dist/esm/index.d.ts",
"module": "dist/esm/index.js",
"react-native": "src/index.ts",
"files": [
"/dist",
"/src",
"/android",
"/ios",
"*.podspec",
"react-native.config.json",
"app.plugin.js",
"plugin/build",
"!ios/build",
"!android/build",
"!android/gradle",
"!android/gradlew",
"!android/gradlew.bat",
"!android/local.properties",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"scripts": {
"version": "git add -A",
"clean": "rimraf dist",
"type:check": "tsc -p tsconfig.json --noEmit",
"build:plugin": "tsc --build plugin",
"clean:plugin": "expo-module clean plugin",
"prepare": "npm run build",
"prebuild": "npm run clean && npm run clean:plugin",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"build:esm": "tsc --outDir dist/esm",
"build": "npm run build:esm && npm run build:cjs && npm run build:plugin",
"watch": "npm run build --watch",
"preversion": "npm run build",
"postversion": "git push --follow-tags"
},
"resolutions": {
"@types/react": "^18.2.44"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.6.0",
"@react-native/eslint-config": "^0.76.2",
"@release-it/conventional-changelog": "^9.0.3",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.12",
"commitlint": "^19.6.0",
"del-cli": "^6.0.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"react": "18.3.1",
"react-native": "0.76.2",
"@react-native/gradle-plugin": "^0.76.2",
"turbo": "^2.3.0",
"typescript": "^5.6.3",
"@expo/config-plugins": "^9.0.10",
"expo-module-scripts": "^4.0.2"
},
"eslintConfig": {
"root": true,
"extends": [
"@react-native",
"prettier"
],
"rules": {
"react/react-in-jsx-scope": "off"
}
},
"eslintIgnore": [
"node_modules/",
"lib/"
],
"codegenConfig": {
"name": "BleManagerSpec",
"type": "modules",
"jsSrcsDir": "src",
"android": {
"javaPackageName": "it.innove"
}
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}