-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"name": "webext-buildtools-chrome-webstore-upload-action",
"private": false,
"description": "Deploy your WebExtension to Chrome Web Store",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"pack": "ncc build",
"all": "npm run build && npm run pack",
"mergePushMasterToV1": "git fetch . master:v1 && git push origin v1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cardinalby/webext-buildtools-chrome-webstore-upload-action.git"
},
"keywords": [
"webext-buildtools",
"webext",
"webextensions",
"webextension",
"build",
"deployment",
"deploy",
"sign",
"chrome",
"webstore",
"crx",
"action"
],
"author": "cardinalby",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"github-actions-utils": "^1.0.9",
"webext-buildtools-chrome-webstore-builder": "^1.1.18",
"winston": "^3.8.1"
},
"devDependencies": {
"webext-buildtools-builder-types": "^1.0.11",
"@types/node": "^20.9.4",
"@vercel/ncc": "^0.38.1",
"typescript": "^4.8.4"
}
}