forked from Hector-Zhuang/native-wechat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.54 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "native-wechat",
"version": "1.0.21",
"description": "A React Native library for supporting Wechat APIs on Android and iOS",
"react-native": "src/index",
"main": "dist/index.mjs",
"types": "dist/src/index.d.ts",
"scripts": {
"prepare": "husky install",
"build": "tsc && vite build"
},
"files": [
"src",
"android",
"ios",
"dist/*",
"RTNWechat.podspec",
"!android/build",
"!ios/build",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"keywords": [
"react-native",
"ios",
"android"
],
"repository": "https://github.com/Hector-Chong/native-wechat",
"author": "Héctor Chong <i@hector.im> (https://github.com/Hector-Chong)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Hector-Chong/native-wechat/issues"
},
"homepage": "https://github.com/Hector-Chong/native-wechat#readme",
"devDependencies": {
"@react-native-community/eslint-config": "^3.2.0",
"@rollup/plugin-typescript": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^5.30.0",
"@vitejs/plugin-react-swc": "^3.0.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"git-cz": "^4.9.0",
"husky": "^8.0.0",
"prettier": "^2.5.1",
"react-native": "^0.76.5",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vite": "^4.0.4"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"codegenConfig": {
"name": "NativeWechatSpec",
"type": "all",
"jsSrcsDir": "src",
"outputDir": {
"ios": "ios/generated",
"android": "android/generated"
},
"android": {
"javaPackageName": "com.hector.nativewechat"
}
},
"config": {
"commitizen": {
"path": "node_modules/git-cz"
}
},
"husky": {
"hooks": {
"pre-commit": "exec < /dev/tty && npx cz --hook || true",
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@types/react": "^18.2.0"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}