-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.48 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
{
"name": "@pittica/drive-folder-qrcode",
"private": false,
"version": "1.4.1",
"description": "Creates QR codes from Google Drive folder names.",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf ./dist",
"build": "npm run clean && mkdirp ./dist && babel src --out-dir ./dist --copy-files",
"local": "npm run build && run-func dist/scripts.js local",
"drive": "npm run build && run-func dist/scripts.js drive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pittica/drive-qrcoder.git"
},
"keywords": [
"pittica",
"google-drive",
"qr-code",
"google-cloud-platform",
"gcp"
],
"author": "Lucio Benini <lucio.benini@pittica.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/pittica/drive-qrcoder/issues"
},
"homepage": "https://github.com/pittica/drive-qrcoder#README.md",
"dependencies": {
"@google-cloud/local-auth": "^3.0.1",
"@svgdotjs/svg.js": "^3.2.4",
"axios": "^1.7.8",
"canvas": "^2.11.2",
"deasync": "^0.1.30",
"googleapis": "^144.0.0",
"jsdom": "^25.0.1",
"memorystream": "^0.3.1",
"qr-code-styling": "^1.8.4",
"svg-to-pdfkit": "^0.1.8",
"svgo": "^3.3.2"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"mkdirp": "^3.0.1",
"prettier": "^3.4.1",
"rimraf": "^6.0.1",
"run-func": "^3.0.0"
}
}