-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
86 lines (86 loc) · 2.72 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
{
"name": "react-native-jsi-base-coder",
"version": "1.0.2",
"description": "Base64/32/16 encoding/decoding for React Native written in C/C++ and JSI.",
"repository": "https://github.com/jeremybarbet/react-native-jsi-base-coder",
"author": "Jérémy Barbet <jeremgraph@gmail.com> (https://github.com/jeremybarbet)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeremybarbet/react-native-jsi-base-coder/issues"
},
"homepage": "https://github.com/jeremybarbet/react-native-jsi-base-coder#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"cppcodec/cppcodec",
"react-native-jsi-base-coder.podspec",
"!lib/typescript/example",
"!android/build",
"!ios/build",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"keywords": [
"react-native",
"ios",
"android",
"jsi",
"c++",
"base64",
"base32",
"base16",
"encode",
"decode",
"rfc4648",
"crockford"
],
"scripts": {
"typescript": "tsc --noEmit",
"prepare": "yarn build && yarn build:dts",
"build": "bob build",
"build:dts": "copyfiles -u 1 'src/types/*.d.ts' lib/typescript",
"release": "release-it",
"lint": "yarn lint:tsc && yarn lint:eslint && yarn lint:prettier",
"lint:tsc": "tsc -p tsconfig.json --noEmit --skipLibCheck",
"lint:eslint": "eslint --fix '{src,example}/**/*.{ts,tsx}'",
"lint:ci": "yarn lint:tsc && yarn lint:eslint -f ./node_modules/@firmnav/eslint-github-actions-formatter/dist/formatter.js && yarn lint:prettier",
"lint:prettier": "prettier --write \"{src,example}/**/*.{md,js,jsx,ts,tsx}\"",
"format": "git ls-files -m | xargs yarn prettier --write --ignore-unknown --no-error-on-unmatched-pattern",
"submodule:update": "git submodule update --remote --merge"
},
"devDependencies": {
"@firmnav/eslint-github-actions-formatter": "1.0.1",
"@release-it/conventional-changelog": "4.3.0",
"@types/react": "17.0.38",
"@types/react-native": "0.67.6",
"@typescript-eslint/eslint-plugin": "5.21.0",
"@typescript-eslint/parser": "5.21.0",
"copyfiles": "2.4.1",
"eslint": "8.14.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"prettier": "2.6.2",
"react": "18.1.0",
"react-native": "0.68.1",
"react-native-builder-bob": "0.18.1",
"release-it": "14.14.2",
"typescript": "4.6.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
}
}