-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.2 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.2 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
{
"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 <preflower.lin@gmail.com> (https://github.com/preflower)",
"main": "index.js",
"scripts": {
"prepare": "husky",
"preinstall": "npx only-allow pnpm",
"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.2.0"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.3",
"eslint": "^9.39.4",
"eslint-config-ted": "^4.1.1",
"husky": "^9.1.7",
"lint-staged": "^16.3.1",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
}
}