-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.97 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.97 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
{
"name": "@zbdpay/ramp-react-native",
"version": "1.0.5",
"description": "React Native wrapper for ZBD Ramp widget",
"main": "dist/src/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "swc src -d dist --watch",
"build": "swc src -d dist && tsc --emitDeclarationOnly",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build",
"ts:check": "tsc --noEmit",
"changelog:added": "npx keep-a-changelog added",
"changelog:changed": "npx keep-a-changelog changed",
"changelog:fixed": "npx keep-a-changelog fixed",
"release": "release-it",
"release:patch": "release-it patch",
"release:minor": "release-it minor",
"release:major": "release-it major"
},
"keywords": [
"zbd",
"zebedee",
"ramp",
"zbdpay",
"bitcoin",
"lightning",
"react-native",
"webview",
"widget",
"mobile"
],
"author": "ZBD",
"license": "MIT",
"files": [
"dist",
"README.md"
],
"devDependencies": {
"@release-it/keep-a-changelog": "^7.0.0",
"@swc/cli": "^0.5.0",
"@swc/core": "^1.10.6",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/jest": "^29.5.14",
"@types/react": "^18.0.0",
"@types/react-native": "^0.70.0",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@typescript-eslint/parser": "^8.33.1",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.4.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"react-native-webview": "^13.15.0",
"release-it": "^19.0.4",
"typescript": "^5.7.2"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">=0.60.0",
"react-native-webview": ">=11.0.0"
},
"dependencies": {
"@zbdpay/ramp-ts": "^1.1.8"
}
}