-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
54 lines (54 loc) · 1.41 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
{
"name": "qrcanvas",
"version": "3.1.2",
"description": "Generate characteristic qrcodes with a canvas.",
"author": "Gerald <[email protected]>",
"license": "ISC",
"scripts": {
"prepare": "husky install",
"dev": "rollup -wc rollup.conf.js",
"build:types": "tsc",
"build:js": "rollup -c rollup.conf.js",
"build": "run-s ci clean build:types build:js",
"lint": "eslint --ext .ts .",
"build:docs": "typedoc --out demo/docs src/index.ts",
"gh-pages": "gh-pages -fd demo",
"deploy": "run-s build:docs gh-pages",
"prepublishOnly": "npm run build",
"clean": "del-cli lib types",
"ci": "run-s lint"
},
"title": "QRCanvas",
"repository": {
"type": "git",
"url": "[email protected]:gera2ld/qrcanvas.git"
},
"bugs": {
"url": "https://github.com/gera2ld/qrcanvas/issues"
},
"typings": "types/index.d.ts",
"publishConfig": {
"access": "public"
},
"main": "lib/qrcanvas.common.js",
"module": "lib/qrcanvas.esm.js",
"unpkg": "lib/qrcanvas.min.js",
"jsdelivr": "lib/qrcanvas.min.js",
"files": [
"lib",
"types"
],
"devDependencies": {
"@gera2ld/plaid": "~2.5.6",
"@gera2ld/plaid-common-ts": "~2.5.1",
"@gera2ld/plaid-rollup": "~2.5.6",
"del-cli": "^5.0.0",
"gh-pages": "^4.0.0",
"husky": "^8.0.1",
"typedoc": "^0.23.10"
},
"dependencies": {
"@babel/runtime": "^7.18.9",
"qrcode-generator": "^1.4.4"
}
}