-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1005 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1005 Bytes
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": "@galihrivanto/fancy-qr",
"version": "1.0.3",
"description": "A QR code generator with fancy styles options.",
"type": "module",
"main": "./dist/fancyqr.es.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "vite --host",
"build": "vite build",
"build:samples": "vite build --mode samples",
"preview": "vite preview",
"prepare": "npm run build"
},
"dependencies": {
"@galihrivanto/dict": "^1.0.0",
"nayuki-qr-code-generator": "^1.8.0"
},
"devDependencies": {
"@types/node": "^20.8.10",
"autoprefixer": "^10.4.16",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vite-plugin-dts": "^3.6.4"
},
"repository": {
"type": "git",
"url": "https://github.com/galihrivanto/fancy-qr.git"
},
"keywords": [
"qr",
"qrcode",
"qr-code",
"qr-code-generator",
"qr-code-generator-with-styles"
],
"author": "Galih Rivanto",
"license": "MIT"
}