-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.15 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
{
"name": "wifi-qrcode-generator",
"description": "A basic script to generate an image with a QR Code to easily share your Wifi. 📶",
"version": "1.0.0",
"author": "KirianCaumes",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/KirianCaumes/Wifi-QRCode-Generator.git"
},
"bugs": {
"url": "https://github.com/KirianCaumes/Wifi-QRCode-Generator/issues"
},
"homepage": "https://github.com/KirianCaumes/Wifi-QRCode-Generator#readme",
"engines": {
"node": "18.x.x"
},
"type": "module",
"funding": [
{
"type": "paypal",
"url": "https://www.paypal.me/KirianCaumes"
}
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node --experimental-specifier-resolution=node ./src/index.js"
},
"dependencies": {
"playwright-chromium": "^1.31.0",
"qrcode": "^1.5.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"eslint": "^8.34.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^40.0.0",
"eslint-plugin-jsx-a11y": "^6.7.1"
}
}