-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 807 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 807 Bytes
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
{
"name": "qrcode-comment",
"version": "0.1.0",
"private": true,
"description": "QR Code action",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"package": "ncc build --license licenses.txt",
"all": "npm run build && npm run format && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ableco/qrcode-comment-action.git"
},
"author": "engineering@able.co",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^5.0.3",
"qrcode-generator": "^1.4.4"
},
"devDependencies": {
"@types/node": "^18.14.6",
"@vercel/ncc": "^0.33.3",
"prettier": "^2.5.1",
"typescript": "^4.5.5"
}
}