-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.22 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
{
"name": "simple-qr-code",
"version": "1.3.6",
"private": true,
"description": "Offline QR Code Generator/Editor - a fast, ads-free, fully offline Chrome extension (Manifest V3) that turns the current tab URL or any selected text into a QR code.",
"author": "justyy <dr.zhihua.lai@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/doctorlai/simple-qr-code#readme",
"repository": {
"type": "git",
"url": "https://github.com/doctorlai/simple-qr-code.git"
},
"bugs": {
"url": "https://github.com/doctorlai/simple-qr-code/issues"
},
"keywords": [
"chrome-extension",
"qrcode",
"qr",
"offline",
"manifest-v3",
"generator"
],
"engines": {
"node": ">=18"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "jest",
"coverage": "jest --coverage",
"check": "npm run lint && npm run format:check && npm run coverage",
"build": "node scripts/build.js",
"ci": "npm run check && npm run build"
},
"devDependencies": {
"archiver": "^7.0.1",
"eslint": "^9.39.4",
"globals": "^17.7.0",
"jest": "^30.4.2",
"prettier": "^3.9.3"
}
}