-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.24 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.24 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
{
"name": "react-jsbarcode",
"version": "0.0.0-development",
"type": "module",
"description": "JSBarcode component for React",
"homepage": "http://github.com/iamchathu/react-jsbarcode",
"repository": {
"type": "git",
"url": "git+https://github.com/iamchathu/react-jsbarcode.git"
},
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"default": "./lib/index.js"
}
},
"files": [
"lib"
],
"author": "Chathu Vishwajith <iam@chathu.me>",
"license": "MIT",
"scripts": {
"clean": "rimraf lib/",
"tsc": "tsc -b .",
"build": "tsup",
"lint": "eslint 'src/**/*.{ts,tsx}' --quiet --fix ",
"prepublishOnly": "pnpm clean && pnpm build",
"semantic-release": "semantic-release",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"jsbarcode": "^3.12.3"
},
"devDependencies": {
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.3",
"@eslint/compat": "^2.0.2",
"@eslint/eslintrc": "^3.3.4",
"@eslint/js": "^10.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@storybook/addon-docs": "^10.2.13",
"@storybook/addon-links": "^10.2.13",
"@storybook/react-vite": "^10.2.13",
"@types/react": "^19.2.14",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-storybook": "^10.2.13",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"prettier": "^3.8.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"rimraf": "^6.1.3",
"semantic-release": "^25.0.3",
"storybook": "^10.2.13",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0"
},
"keywords": [
"react",
"react-component",
"barcode",
"jsbarcode",
"barcode generator",
"react barcode"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"volta": {
"node": "24.14.0"
}
}