-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
85 lines (85 loc) · 2.28 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
{
"name": "react-jsbarcode",
"version": "0.0.0-development",
"description": "JSBarcode component for React",
"homepage": "http://github.com/iamchathu/react-jsbarcode",
"repository": {
"type": "git",
"url": "https://github.com/iamchathu/react-jsbarcode.git"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"import": {
"types": "./lib/index.d.mts",
"default": "./lib/index.mjs"
},
"require": {
"types": "./lib/index.d.ts",
"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",
"prepare": "husky"
},
"dependencies": {
"jsbarcode": "^3.11.5"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@storybook/addon-essentials": "^8.1.1",
"@storybook/addon-interactions": "^8.1.1",
"@storybook/addon-links": "^8.1.1",
"@storybook/addon-onboarding": "^8.1.1",
"@storybook/blocks": "^8.1.1",
"@storybook/react": "^8.1.1",
"@storybook/react-vite": "^8.1.1",
"@types/react": "^18.3.2",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^9.0.11",
"lint-staged": "^12.3.5",
"prettier": "^2.5.1",
"react": "^18.3.1",
"rimraf": "^5.0.7",
"semantic-release": "^21.0.7",
"storybook": "^8.1.1",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"peerDependencies": {
"react": ">=17 <=18"
},
"keywords": [
"react",
"react-component",
"barcode",
"jsbarcode",
"barcode generator",
"react barcode"
]
}