-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 815 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 815 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": "release-firefox-addon",
"version": "0.2.1",
"description": "Publish a firefox addon to AMO",
"main": "index.js",
"repository": "git@github.com:browser-actions/release-firefox-addon.git",
"author": "Shin'ya Ueoka <ueokande@i-beam.org>",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.3.0",
"@types/uuid": "^9.0.2"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@vercel/ncc": "^0.36.1",
"jsonwebtoken": "^9.0.0",
"typescript": "^5.0.4",
"uuid": "^9.0.0"
},
"scripts": {
"build": "ncc build src/index.ts",
"package": "cp action.yml README.md dist/",
"lint": "biome ci .",
"lint:fix": "biome check --write ."
},
"engines": {
"node": "20.1.0"
}
}