-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
37 lines (37 loc) · 888 Bytes
/
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
{
"name": "@qifi/generate",
"type": "module",
"version": "0.1.0",
"description": "Stream Generated QR Codes for data transmission",
"author": "Rizumu Ayaka <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/qifi-dev/qrs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/qifi-dev/qrs.git",
"directory": "packages/generate"
},
"bug": "https://github.com/qifi-dev/qrs/issues",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"stub": "unbuild --stub"
},
"dependencies": {
"js-base64": "^3.7.7",
"luby-transform": "workspace:*",
"uqr": "^0.1.2"
}
}