-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
111 lines (111 loc) · 2.92 KB
/
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
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "web-ext-deploy",
"version": "0.13.4",
"description": "A tool for deploying WebExtensions to multiple stores.",
"type": "module",
"typesVersions": {
"*": {
"*": [
"dist-esm/*.d.ts"
]
}
},
"bin": {
"web-ext-deploy": "dist-esm/index.js"
},
"types": "./dist-esm/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/avi12/web-ext-deploy"
},
"keywords": [
"web-ext",
"web-ext-deploy",
"web-ext-publish",
"chrome-deploy",
"chrome-publish",
"chrome-extension",
"firefox-deploy",
"firefox-publish",
"firefox-extension",
"firefox-addon",
"firefox-submission-api",
"opera-deploy",
"opera-publish",
"opera-extension",
"opera-addon",
"edge-deploy",
"edge-publish",
"edge-extension",
"edge-publish-api"
],
"files": [
"dist-esm/**/*"
],
"author": {
"name": "Avi",
"email": "avi6106@gmail.com",
"url": "https://avi12.com"
},
"bugs": {
"email": "avi6106@gmail.com",
"url": "https://github.com/avi12/web-ext-deploy/issues"
},
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/avi12/web-ext-deploy#readme",
"scripts": {
"debug:dev": "nodemon --config nodemon-dev.json",
"debug:prod": "nodemon --",
"clean": "rimraf dist-esm",
"prepare": "pnpm clean && pnpm build",
"build": "pnpm build:esm",
"build:esm": "tsc",
"watch": "tsc --watch",
"types:check": "tsc --noEmit",
"format": "prettier --write \"{src,test,examples}/**/*.ts\"",
"lint": "eslint \"{src,test,examples}/**/*.ts\"",
"lint:fix": "eslint \"{src,test,examples}/**/*.ts\" --fix",
"reinstall-locally": "pnpm unlink -g && pnpm i && pnpm link -g"
},
"lint-staged": {
"*.ts": [
"pnpm lint:fix",
"pnpm format",
"git add"
]
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@types/chrome-webstore-upload": "^1.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.7.4",
"@types/yargs": "^17.0.33",
"eslint": "^9.11.1",
"eslint-config-avi12": "github:avi12/eslint-config-avi12",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.9.0",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0",
"vite-node": "^2.1.1"
},
"dependencies": {
"axios": "^1.7.7",
"chalk": "^5.3.0",
"change-case": "^5.4.4",
"chrome-webstore-upload": "^3.1.4",
"compare-versions": "6.1.1",
"dotenv": "^16.4.5",
"exponential-backoff": "^3.1.1",
"fetch-blob": "^4.0.0",
"form-data": "^4.0.0",
"jsonwebtoken": "^9.0.2",
"playwright": "^1.47.2",
"yargs": "^17.7.2",
"zip-local": "^0.3.5"
},
"packageManager": "pnpm@9.11.0+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b"
}