-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.02 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.02 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "react-native-gmo-payment",
"version": "0.3.2",
"description": "Library for using Multipayment in react-native",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"publishConfig": {
"access": "public"
},
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/napolab/react-native-gmo-payment.git"
},
"bugs": {
"url": "https://github.com/napolab/react-native-gmo-payment/issues"
},
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"lint": "npm-run-all -p lint:*",
"lint:prettier": "prettier --check .",
"lint:eslint": "eslint --ext .ts,.tsx .",
"fmt": "npm-run-all -s fmt:*",
"fmt:prettier": "prettier --write .",
"fmt:eslint": "eslint --ext .ts,.tsx --fix .",
"test": "echo 'test'",
"type-check": "tsc --noEmit",
"release": "changeset publish"
},
"keywords": [
"react-native",
"gmo-payment",
"webview"
],
"files": [
"README",
"package.json",
"dist",
"src"
],
"author": "@naporin0624",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@naporin0624/eslint-config": "^0.13.1",
"@tsconfig/react-native": "^3.0.2",
"@types/jest": "^29.5.5",
"@types/react": "^18.2.22",
"@types/react-test-renderer": "^18.0.2",
"eslint": "^8.49.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-native": "^0.72.4",
"react-native-webview": "^13.6.0",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-native": ">=0.72.0",
"react-native-webview": ">=13.2.1"
},
"volta": {
"node": "18.18.0",
"npm": "10.1.0"
},
"dependencies": {
"wonka": "^6.3.4"
}
}