-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.65 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.65 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "semantic-release-amo",
"version": "1.0.0",
"description": "A semantic-release plugin for publishing Firefox add-ons to AMO (addons.mozilla.org) using the official AMO API.",
"keywords": [
"semantic-release",
"amo",
"firefox",
"add-on"
],
"homepage": "https://github.com/iorate/semantic-release-amo#readme",
"bugs": "https://github.com/iorate/semantic-release-amo/issues",
"repository": "iorate/semantic-release-amo",
"license": "MIT",
"author": "iorate <dev.iorate@gmail.com>",
"type": "module",
"exports": "./dist/index.js",
"files": [
"./dist/*.js"
],
"scripts": {
"build": "esbuild src/*.ts --outbase=src --outdir=dist",
"check": "pnpm run /^check:/",
"check:biome": "biome check",
"check:prettier": "prettier --check **/*.{md,yaml,yml}",
"check:tsc": "tsc",
"fix": "pnpm run /^fix:/",
"fix:biome": "biome check --write",
"fix:prettier": "prettier --write **/*.{md,yaml,yml}"
},
"dependencies": {
"@semantic-release/error": "^4.0.0",
"adm-zip": "^0.5.16",
"arktype": "^2.1.20",
"es-toolkit": "^1.39.10",
"esbuild": "^0.25.9",
"execa": "^9.6.0",
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"@biomejs/biome": "^2.2.2",
"@types/adm-zip": "^0.5.7",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.3.0",
"@types/semantic-release__error": "^3.0.3",
"@types/signale": "^1.4.7",
"lefthook": "^1.12.3",
"prettier": "^3.6.2",
"semantic-release": "^24.2.7",
"typescript": "^5.9.2"
},
"peerDependencies": {
"semantic-release": ">=20"
},
"packageManager": "pnpm@10.15.0",
"engines": {
"pnpm": ">=10"
}
}