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.5-0",
"description": "Publish a firefox addon to AMO",
"main": "dist/index.js",
"type": "module",
"repository": "[email protected]:browser-actions/release-firefox-addon.git",
"author": "Shin'ya Ueoka <[email protected]>",
"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.8.2",
"uuid": "11.1.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/jsonwebtoken": "9.0.9",
"@types/node": "22.13.10",
"@types/uuid": "10.0.0"
},
"packageManager": "[email protected]"
}