forked from preflower/react-barcode-scanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.33 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
{
"name": "react-barcode-scanner/monorepo",
"version": "1.0.0",
"private": true,
"description": "Monorepo for React Barcode Scanner",
"type": "module",
"keywords": [],
"license": "MIT",
"homepage": "https://reactbarcodescanner.vercel.app/",
"author": "Ted Lin <[email protected]> (https://github.com/preflower)",
"main": "index.js",
"scripts": {
"prepare": "husky",
"docs:build": "pnpm --filter docs build",
"docs:dev": "pnpm --filter docs dev",
"build": "pnpm --filter react-barcode-scanner run build",
"ci:version": "pnpm changeset version && pnpm install --lockfile-only",
"ci:publish": "pnpm build && pnpm changeset publish"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@preflower/utils": "^1.1.1"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"eslint": "^9.17.0",
"eslint-config-ted": "^4.0.8",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"typescript": "^5.7.2"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"packageManager": "[email protected]+sha512.e5a7e52a4183a02d5931057f7a0dbff9d5e9ce3161e33fa68ae392125b79282a8a8a470a51dfc8a0ed86221442eb2fb57019b0990ed24fab519bf0e1bc5ccfc4"
}