-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.4 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@lo-fi/qr-data-sync",
"description": "Browser-only utils for sharing/synchronizing data using 'animated' QR codes",
"version": "0.999.2",
"exports": {
".": "./dist/bundlers/qrds.mjs",
"./bundlers/astro": "./bundler-plugins/astro.mjs",
"./bundlers/vite": "./bundler-plugins/vite.mjs",
"./bundlers/webpack": "./bundler-plugins/webpack.mjs"
},
"browser": {
"qr-data-sync": "./dist/bundlers/qrds.mjs"
},
"scripts": {
"build:all": "node scripts/build-all.js",
"build:gh-pages": "npm run build:all && node scripts/build-gh-pages.js",
"build": "npm run build:all",
"test:start": "npx http-server test/ -p 8080",
"test": "npm run test:start",
"postinstall": "node scripts/postinstall.js"
},
"dependencies": {
"qr-scanner": "~1.4.2"
},
"devDependencies": {
"micromatch": "~4.0.5",
"recursive-readdir-sync": "~1.0.6",
"terser": "~5.29.2"
},
"peerDependencies": {
"html-webpack-plugin": "~5.6.0"
},
"peerDependenciesMeta": {
"html-webpack-plugin": {
"optional": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/mylofi/qr-data-sync.git"
},
"keywords": [
"qr",
"qr code",
"qr reader",
"data",
"sync",
"sharing"
],
"bugs": {
"url": "https://github.com/mylofi/qr-data-sync/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/mylofi/qr-data-sync",
"author": "Kyle Simpson <[email protected]>",
"license": "MIT"
}