-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
57 lines (57 loc) · 1.5 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
{
"name": "@emurgo/csl-mobile-bridge",
"title": "CSL mobile bridge",
"version": "7.3.0",
"description": "React-native bindings for Emurgo's cardano-serialization-lib (Cardano haskell Shelley)",
"main": "index.js",
"files": [
"README.md",
"LICENSE",
"/android",
"index.js",
"index.d.ts",
"index.js.flow",
"/ios",
"react-native.config.js",
"react-native-haskell-shelley.podspec",
"/rust",
"yarn.lock"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint index.js index.d.ts",
"js:flowgen": "flowgen ./index.d.ts -o ./index.js.flow --add-flow-header",
"release:prod": "yarn js:flowgen && npm publish --access public",
"release:beta": "yarn js:flowgen && npm publish --tag beta --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Emurgo/csl-mobile-bridge.git",
"baseUrl": "https://github.com/Emurgo/csl-mobile-bridge"
},
"keywords": [
"react-native"
],
"author": {
"name": "EMURGO"
},
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"peerDependencies": {
"react": ">=17.0.2",
"react-native": ">=0.67.5 <0.72.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "7.8.1",
"flowgen": "^1.21.0",
"react": "^18.0.0",
"react-native": "^0.71.6",
"typescript": "^4.1.3"
},
"dependencies": {
"base-64": "0.1.0"
}
}