-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 4.17 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
{
"name": "GitKraken",
"description": "The GitKraken Browser Extension bridges your hosted git repositories to GitKraken Desktop and with GitLens in VS Code.",
"version": "2023.12.2114",
"license": "MIT",
"author": {
"name": "Eric Amodio",
"email": "[email protected]"
},
"homepage": "https://gitkraken.com",
"bugs": {
"url": "https://github.com/gitkraken/gitkraken-browser/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/gitkraken/gitkraken-browser.git"
},
"main": "dist/background.js",
"scripts": {
"build": "yarn run ensure-manifest && webpack --mode development",
"build:chromium": "yarn run set-manifest:chromium:force && yarn build",
"build:firefox": "yarn run set-manifest:firefox:force && yarn build",
"bundle:chromium": "yarn run clean:chromium && yarn run set-manifest:chromium:force && webpack --mode production",
"bundle:firefox": "yarn run clean:firefox && yarn run set-manifest:firefox:force && webpack --mode production",
"clean": "npx rimraf dist && yarn run clean:package",
"clean:chromium": "npx rimraf dist && yarn run clean:package:chromium",
"clean:firefox": "npx rimraf dist && yarn run clean:package:firefox",
"clean:package": "x-var rimraf \"%npm_package_name%*.zip\"",
"clean:package:chromium": "x-var rimraf \"%npm_package_name%*-chromium.zip\"",
"clean:package:firefox": "x-var rimraf \"%npm_package_name%*-firefox.zip\"",
"lint": "eslint \"src/**/*.ts?(x)\" --fix",
"ensure-manifest": "node -e \"require('./scripts/makeManifest').ensureManifest()\"",
"set-manifest:firefox": "node -e \"require('./scripts/makeManifest').makeFirefoxManifest()\"",
"set-manifest:firefox:force": "node -e \"require('./scripts/makeManifest').makeFirefoxManifest(true)\"",
"set-manifest:chromium": "node -e \"require('./scripts/makeManifest').makeChromiumManifest()\"",
"set-manifest:chromium:force": "node -e \"require('./scripts/makeManifest').makeChromiumManifest(true)\"",
"sign:firefox": "x-var node ./scripts/signFireFoxAddon.mjs \"%npm_package_name%-%npm_package_version%-firefox.zip\" \"%npm_package_version%\"",
"test": "yarn playwright test",
"package": "yarn run package:chromium && yarn run package:firefox",
"package:chromium": "yarn run bundle:chromium && x-var npx bestzip \"%npm_package_name%-%npm_package_version%-chromium.zip\" dist static icons manifest.json LICENSE",
"package:firefox": "yarn run bundle:firefox && x-var npx bestzip \"%npm_package_name%-%npm_package_version%-firefox.zip\" dist static icons manifest.json LICENSE && yarn run sign:firefox",
"package:firefox-no-sign": "yarn run bundle:firefox && x-var npx bestzip \"%npm_package_name%-%npm_package_version%-firefox.zip\" dist static icons manifest.json LICENSE",
"package-pre": "yarn run patch-pre && yarn run package",
"patch-pre": "node ./scripts/applyPreReleasePatch.js",
"pretty": "prettier --config .prettierrc --loglevel warn --write .",
"watch": "yarn run ensure-manifest && webpack --watch --mode development",
"watch:chromium": "yarn run set-manifest:chromium:force && yarn watch",
"watch:firefox": "yarn run set-manifest:firefox:force && yarn watch"
},
"dependencies": {
"@gitkraken/provider-apis": "0.22.9",
"@tanstack/query-async-storage-persister": "5.32.0",
"@tanstack/react-query": "5.32.0",
"@tanstack/react-query-persist-client": "5.32.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"webextension-polyfill": "0.10.0"
},
"devDependencies": {
"@playwright/test": "1.35.1",
"@tanstack/eslint-plugin-query": "5.28.11",
"@types/chrome": "0.0.246",
"@types/react-dom": "18.2.23",
"@types/webextension-polyfill": "0.10.1",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"clean-webpack-plugin": "4.0.0",
"esbuild": "0.18.13",
"esbuild-loader": "3.0.1",
"eslint": "8.45.0",
"eslint-cli": "1.1.1",
"eslint-config-prettier": "8.8.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-anti-trojan-source": "1.1.1",
"eslint-plugin-import": "2.27.5",
"fork-ts-checker-webpack-plugin": "6.5.3",
"prettier": "3.0.0",
"sign-addon": "^6.0.0",
"terser-webpack-plugin": "5.3.9",
"typescript": "5.1.6",
"webpack": "5.94.0",
"webpack-cli": "5.1.4",
"x-var": "2.0.1"
}
}