-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
45 lines (45 loc) · 1.01 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
{
"name": "sexy-qr",
"type": "module",
"version": "0.3.3",
"description": "Sexy SVG QR-code generator",
"author": "Avin Lambrero <avin.github@gmail.com> (https://github.com/avin/)",
"license": "MIT",
"homepage": "https://github.com/avin/sexy-qr",
"repository": {
"type": "git",
"url": "https://github.com/avin/sexy-qr.git"
},
"bugs": {
"url": "https://github.com/avin/sexy-qr/issues"
},
"keywords": [
"qr",
"svg"
],
"files": [
"dist",
"assets",
"README.md"
],
"source": "src/index.ts",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js",
"types": "./dist/index.d.ts"
},
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"prepublishOnly": "npm run build"
},
"dependencies": {},
"devDependencies": {
"microbundle": "^0.14.2",
"prettier": "^2.5.1"
}
}