-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
85 lines (85 loc) · 2.2 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
{
"name": "@animo-id/react-native-bbs-signatures",
"version": "0.0.0",
"description": "ffi-bbs-signatures wrapper for react native",
"react-native": "lib/index.js",
"source": "src/index.ts",
"main": "lib/index.js",
"files": [
"android/src",
"android/libs",
"android/build.gradle",
"android/CMakeLists.txt",
"android/cpp-adapter.cpp",
"ios/**/*.h",
"ios/**/*.mm",
"ios/Frameworks",
"ios/BbsSignatures.xcodeproj/project.pbxproj",
"lib",
"cpp/*.cpp",
"cpp/*.h",
"cpp/include",
"cpp/keys",
"react-native-bbs-signatures.podspec",
"README.md",
"LICENSE",
"react-native.config.js"
],
"scripts": {
"check-types": "tsc --noEmit -p tsconfig.build.json",
"check-format": "yarn prettier --check",
"example": "yarn --cwd example",
"prettier": "prettier --ignore-path .gitignore '**/*.+(js|json|ts|md|yml|yaml)'",
"format": "yarn prettier --write",
"build": "yarn clean && yarn compile",
"clean": "rimraf -rf ./lib",
"compile": "tsc -p tsconfig.build.json",
"release": "release-it"
},
"keywords": [
"react-native",
"ios",
"android"
],
"repository": "https://github.com/animo/react-native-bbs-signatures.git",
"author": "Animo Solutions <[email protected]> (https://animo.id)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/animo/react-native-bbs-signatures.git/issues"
},
"homepage": "https://github.com/animo/react-native-bbs-signatures.git#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@types/react": "^16.9.19",
"@types/react-native": "^0.66.0",
"prettier": "^2.0.5",
"react": "17.0.2",
"react-native": "0.68.7",
"release-it": "^15.10.3",
"typescript": "^5.0.4"
},
"peerDependencies": {
"react": ">= 16",
"react-native": ">= 0.66.0"
},
"release-it": {
"github": {
"release": true
},
"npm": {
"skipChecks": true,
"ignoreVersion": true,
"tag": "latest"
},
"git": {
"push": false,
"commit": false,
"requireCommits": true,
"tagAnnotation": "${version}",
"requireBranch": "main"
}
}
}