-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.2 KB
/
package.json
File metadata and controls
52 lines (52 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
45
46
47
48
49
50
51
52
{
"name": "qrcode-webc",
"version": "1.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"engines": {
"node": "^24.0",
"npm": "^11.0"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/eBitzu/qrcode-webc"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/qr-wc.es.js",
"require": "./dist/qr-wc.umd.js"
},
"./dist/style.css": "./dist/style.css"
},
"main": "./dist/qr-wc.umd.js",
"module": "./dist/qr-wc.es.js",
"types": "./dist/index.d.ts",
"dependencies": {
"lit": "^2.7.6",
"qrcode": "^1.5.3"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.4.6",
"@storybook/addon-links": "^7.4.6",
"@storybook/blocks": "^7.4.6",
"@storybook/web-components": "^7.4.6",
"@storybook/web-components-vite": "^7.4.6",
"@types/qrcode": "^1.5.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.4.6",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-dts": "^3.6.0"
}
}