-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.71 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.71 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
87
88
89
90
91
92
93
94
{
"name": "@awesomeqr/react",
"version": "0.1.2-rc.0",
"description": "A React Component for Awesome-qr.js",
"keywords": [
"qr",
"qrcode",
"barcode",
"react",
"reactjs"
],
"main": "./lib/index.js",
"module": "./lib/index.esm.js",
"types": "./lib/index.d.ts",
"typings": "./lib/index.d.ts",
"typescript": {
"definition": "./lib/index.d.ts"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"examples": "cd examples && craco start",
"clean": "rimraf ./lib",
"rollup": "rollup -c",
"dts-bundle": "dts-bundle-generator --external-inlines=awesome-qr -o lib/index.d.ts src/index.ts",
"build": "npm-run-all -s rollup dts-bundle",
"prepublishOnly": "npm-run-all -s clean build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AwesomeQR/react-awesome-qr.git"
},
"author": "Makito <sumimakito@hotmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/AwesomeQR/react-awesome-qr/issues"
},
"homepage": "https://github.com/AwesomeQR/react-awesome-qr#readme",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {},
"peerDependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-flow": "^7.12.1",
"@babel/preset-react": "^7.12.10",
"@craco/craco": "^6.1.1",
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@tailwindcss/postcss7-compat": "^2.0.3",
"@types/bluebird": "^3.5.33",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-syntax-highlighter": "^13.5.0",
"autoprefixer": "^9",
"awesome-qr": "^2.1.4-rc.0",
"bluebird": "^3.7.2",
"dts-bundle-generator": "^5.6.0",
"fork-ts-checker-webpack-plugin": "^6.0.8",
"npm-run-all": "^4.1.5",
"postcss": "^7",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-scripts": "^4.0.3",
"react-syntax-highlighter": "^15.4.3",
"rimraf": "^3.0.2",
"rollup": "^2.35.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^2.0.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.29.0",
"stylelint": "^13.11.0",
"stylelint-config-standard": "^20.0.0",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"ts-loader": "^8.0.12",
"typescript": "^4.1.3"
}
}