forked from preflower/react-barcode-scanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.18 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
87
{
"name": "@domore-hr/react-barcode-scanner",
"version": "1.0.9",
"description": "A barcode scanner base on Barcode Detector",
"main": "lib/index.js",
"module": "esm/index.js",
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"scripts": {
"dev": "dumi dev",
"docs:build": "dumi build",
"build:cjs": "tsc",
"build:es": "tsc -m esNext --outDir esm",
"build": "pnpm build:cjs && pnpm build:es",
"prepare": "husky install && dumi setup",
"ci:version": "pnpm changeset version && pnpm install --lockfile-only",
"ci:publish": "pnpm build && pnpm changeset publish"
},
"keywords": [
"react",
"barcode detector",
"barcode-detector",
"barcode scanner",
"barcode-scanner",
"qrcode"
],
"author": "Ted Lin <[email protected]> (https://github.com/preflower)",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"dumi": "^2.2.7",
"dumi-theme-chakra": "^0.0.22",
"eslint": "^8.41.0",
"eslint-config-ted": "^2.0.1",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"stylelint": "^15.10.3",
"stylelint-config-sass-guidelines": "^10.0.0",
"tslib": "^2.6.2",
"typescript": "^5.0.4"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{css,scss}": [
"stylelint --fix"
],
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"stylelint": {
"extends": "stylelint-config-sass-guidelines",
"rules": {
"selector-max-id": null
}
},
"repository": "https://github.com/preflower/react-barcode-scanner",
"bugs": {
"url": "https://github.com/preflower/react-barcode-scanner/issues"
},
"homepage": "https://preflower.github.io/react-barcode-scanner",
"dependencies": {
"barcode-detector": "2.0.3",
"webrtc-adapter": "^8.2.3"
},
"files": [
"lib/",
"esm/"
],
"publishConfig": {
"access": "public"
}
}