-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.68 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
{
"name": "expo-iap",
"version": "2.1.0",
"description": "In App Purchase module in Expo",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "expo-module build",
"clean": "expo-module clean",
"lint": "eslint --ext .ts,.tsx,.js,.jsx src",
"lint:eslint": "eslint --fix '**/*.{ts,tsx}'",
"lint:prettier": "prettier --write \"**/*.{md,js,jsx,ts,tsx}\"",
"lint:tsc": "tsc -p tsconfig.json --noEmit --skipLibCheck",
"lint:ci": "yarn lint:tsc && yarn lint:eslint && yarn lint:prettier",
"test": "expo-module test",
"prepare": "expo-module prepare",
"prepublishOnly": "expo-module prepublishOnly",
"expo-module": "expo-module",
"open:ios": "xed example/ios",
"open:android": "open -a \"Android Studio\" example/android",
"lint:kotlin": "ktlint --format ./android",
"build:plugin": "tsc --build plugin",
"clean:plugin": "expo-module clean plugin",
"lint:plugin": "eslint plugin/src/*"
},
"keywords": [
"react-native",
"expo",
"expo-iap",
"ExpoIap"
],
"repository": "https://github.com/hyochan/expo-iap",
"bugs": {
"url": "https://github.com/hyochan/issues"
},
"author": "hyochan <[email protected]> (https://github.com/hyochan)",
"license": "MIT",
"homepage": "https://github.com/hyochan#readme",
"dependencies": {},
"devDependencies": {
"@types/react": "^18.0.25",
"expo-module-scripts": "^3.5.2",
"expo-modules-core": "^1.12.19",
"eslint": "8.57.0",
"eslint-config-expo": "^7.1.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3"
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*"
}
}