-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.7 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.7 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
{
"name": "@skyordi/simple-qr-gen",
"version": "1.5.0",
"private": false,
"description": "This project implements a QR code generator featuring resizing functionality, customizable background and foreground colors, adjustable error correction levels, shape structure modifications, and export capabilities for JPEG and SVG formats",
"homepage": "https://github.com/HARUTDOKHOYAN/SimpleQRGenerator#readme",
"bugs": {
"url": "https://github.com/HARUTDOKHOYAN/SimpleQRGenerator/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HARUTDOKHOYAN/SimpleQRGenerator.git"
},
"license": "ISC",
"author": "SkyOrdy",
"keywords": [
"qr",
"qr-code",
"qrcode",
"qr-generator",
"wifi-qr",
"svg",
"customizable",
"barcode",
"2d-barcode",
"wifi",
"vcard",
"email",
"sms",
"phone",
"url"
],
"type": "commonjs",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "vitest run --coverage",
"test:watch": "vitest",
"ci:test": "vitest run --reporter=dot",
"release": "semantic-release"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.3.5",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@types/node": "^22.18.8",
"@vitest/coverage-v8": "^2.1.9",
"conventional-changelog-conventionalcommits": "^7.0.2",
"semantic-release": "^23.1.1",
"typescript": "^5.5.3",
"vitest": "^2.1.9"
},
"files": [
"dist",
"README.md"
],
"publishConfig": {
"access": "public"
}
}