forked from browser-actions/release-firefox-addon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 717 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 717 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
{
"name": "release-firefox-addon",
"version": "2.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": "./package.sh"
},
"dependencies": {
"@actions/core": "3.0.1",
"@vercel/ncc": "0.38.4",
"jsonwebtoken": "9.0.3",
"typescript": "6.0.3",
"uuid": "14.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.13",
"@types/jsonwebtoken": "9.0.10",
"@types/node": "24.12.2"
}
}