-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 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
{
"name": "amo-upload",
"version": "0.0.1",
"private": true,
"description": "GitHub action to upload a new version of a Firefox Web extension to addons.mozilla.org",
"main": "dist/index.js",
"repository": "https://github.com/birchill/amo-upload/",
"author": "Brian Birtles <[email protected]>",
"license": "MIT",
"type": "module",
"dependencies": {
"@actions/core": "1.11.1",
"form-data": "4.0.1",
"jsonwebtoken": "9.0.2",
"utf8": "3.0.0"
},
"devDependencies": {
"@types/jsonwebtoken": "9.0.7",
"@types/node": "20.17.7",
"@types/utf8": "3.0.3",
"esbuild": "0.24.0",
"husky": "9.1.7",
"prettier": "3.3.3",
"typescript": "5.7.2"
},
"scripts": {
"build": "tsc",
"format": "prettier --write index.js",
"format-check": "prettier --check index.js",
"package": "esbuild index.js --outfile=dist/index.js --bundle --platform=node --target=node20 --format=esm --banner:js=\"import {createRequire} from 'module'; const require=createRequire(import.meta.url);\"",
"all": "pnpm build && pnpm format && pnpm package",
"postinstall": "husky"
}
}