-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.1 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
{
"name": "sqrc",
"version": "0.2.3",
"description": "Styled QRCode",
"license": "MIT",
"keywords": [
"qrcode",
"styled",
"qr",
"style qr"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"author": "monodyle <[email protected]>",
"homepage": "https://github.com/monodyle/sqrc#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/monodyle/sqrc.git"
},
"bugs": "https://github.com/monodyle/sqrc/issues",
"scripts": {
"build": "unbuild",
"test": "tsx ./test/index.test.ts"
},
"devDependencies": {
"@swc-node/register": "1.6.8",
"@swc/core": "1.3.104",
"@types/node": "20.11.5",
"typescript": "5.3.3",
"unbuild": "2.0.0"
},
"dependencies": {
"@napi-rs/canvas": "0.1.44",
"qrcode-generator": "1.4.4",
"tsx": "4.7.0"
}
}