forked from sicpa-dlab/didcomm-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.31 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
{
"name": "@sicpa_open_source/didcomm-react-native",
"version": "0.0.21",
"license": "Apache-2.0",
"description": "React Native wrapper for DIDComm v2",
"main": "lib/module/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/src/index.d.ts",
"react-native": "src/index.ts",
"source": "src/index",
"repository": {
"type": "git",
"url": "https://github.com/sicpa-dlab/didcomm-react-native"
},
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"didcomm-react-native.podspec",
"!lib/typescript/demo",
"!android/build",
"!ios/build",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"style:check": "npm run prettier -- --check .",
"style:format": "npm run prettier -- --write .",
"lint": "eslint . --ignore-path ./.eslintignore --ext ts --ext tsx --ext js --ext jsx",
"lint:fix": "eslint --fix . --ignore-path ./.eslintignore --ext ts --ext tsx --ext js --ext jsx",
"build": "bob build",
"prettier": "prettier . --ignore-path ./.gitignore",
"test": "echo 'No tests yet'",
"prepare": "bob build",
"demo": "yarn --cwd demo",
"bootstrap": "yarn demo && yarn"
},
"keywords": [
"react-native",
"ios",
"android"
],
"devDependencies": {
"@types/react-native": "^0.64.5",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.33.0",
"didcomm": "0.3.4",
"eslint": "^7.14.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"patch-package": "^6.4.7",
"pod-install": "^0.1.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.2.1",
"react": "17.0.2",
"react-native": "^0.68.2",
"react-native-builder-bob": "^0.20.1",
"react-native-uuid": "^2.0.1",
"ts-node": "^9.1.1",
"typescript": "^4.5.2"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
},
"dependencies": {
"@babel/core": "*",
"@babel/preset-env": "^7.1.6",
"decode-uri-component": "^0.4.1",
"shell-quote": "^1.7.4"
}
}