-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.57 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 2.57 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
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
112
{
"name": "web-ext-deploy",
"version": "1.0.3",
"description": "A tool for deploying WebExtensions to multiple stores.",
"type": "module",
"typesVersions": {
"*": {
"*": [
"dist/*.d.ts"
]
}
},
"bin": {
"web-ext-deploy": "dist/cli.js"
},
"types": "./dist/cli.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/**/*"
],
"funding": [
{
"type": "PayPal",
"url": "https://paypal.me/avi12"
},
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/avi12"
}
],
"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 --watch src --ext ts --exec \"pnpm build\"",
"clean": "rimraf dist",
"prepare": "pnpm clean && pnpm build",
"build": "pnpm build:esm",
"build:esm": "tsc",
"watch": "tsc --watch",
"types:check": "tsc --noEmit",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "vitest run",
"test:watch": "vitest",
"reinstall-locally": "pnpm unlink -g && pnpm i && pnpm link -g"
},
"lint-staged": {
"*.{ts,tsx}": [
"pnpm lint:fix",
"git add"
]
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/node": "^25.3.5",
"@types/react": "^19.2.14",
"@types/yargs": "^17.0.35",
"eslint": "^10.0.3",
"eslint-plugin-import-newlines": "^2.0.0",
"eslint-plugin-perfectionist": "^5.6.0",
"globals": "^17.4.0",
"lint-staged": "^16.3.2",
"nodemon": "^3.1.14",
"rimraf": "^6.1.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
},
"dependencies": {
"@zip.js/zip.js": "^2.8.23",
"ink": "^6.8.0",
"playwright": "^1.58.2",
"react": "^19.2.4",
"yargs": "^18.0.0",
"zod": "^4.3.6"
}
}