-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.23 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
{
"name": "taro-code-creator",
"version": "1.0.6",
"description": "Code for taro,Supports generating barcodes and QR codes",
"repository": "https://github.com/wukongyang/taro-code-creator",
"author": "wukongyang",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"readmeFilename": "README.md",
"keywords": [
"react-native",
"qrcode",
"barcode",
"taro",
"weapp"
],
"scripts": {
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"build": "npm run build:main && npm run build:module"
},
"files": [
"build/main",
"build/module",
"!**/*.spec.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"license": "LIC",
"dependencies": {
"@tarojs/components": "^3.6.17",
"@tarojs/taro": "^3.6.17",
"@types/node": "^20.10.4",
"html2canvas": "^1.4.1",
"jsbarcode": "^3.11.6",
"qrcodejs2": "^0.0.2",
"react": "^18.1.0",
"@types/react": "^18.0.0",
"@types/react-native": "^0.69.8",
"react-dom": "^18.1.0",
"react-native": "^0.70.1",
"react-native-qrcode-svg": "^6.2.0",
"react-native-svg": "~13.7.0",
"typescript": "^5.3.3"
}
}