forked from browser-actions/release-firefox-addon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 823 Bytes
/
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
{
"name": "release-firefox-addon",
"version": "1.0.4-0",
"description": "Publish a firefox addon to AMO",
"main": "dist/index.js",
"type": "module",
"repository": "git@github.com:browser-actions/release-firefox-addon.git",
"author": "Shin'ya Ueoka <ueokande@i-beam.org>",
"license": "MIT",
"scripts": {
"lint": "biome check",
"lint:fix": "biome check --fix --unsafe",
"package": "ncc build src/index.ts && cp action.yml README.md dist/"
},
"dependencies": {
"@actions/core": "1.11.1",
"@vercel/ncc": "0.38.3",
"jsonwebtoken": "9.0.2",
"typescript": "5.7.3",
"uuid": "11.0.3"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/jsonwebtoken": "9.0.7",
"@types/node": "22.10.10",
"@types/uuid": "10.0.0"
},
"packageManager": "yarn@4.6.0"
}