forked from gitpod-io/browser-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.14 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
{
"private": true,
"name": "gitpod-web-extension",
"version": "0.0.1",
"license": "MIT",
"description": "Browser extension (Chrome/Firefox/Edge) for enhancing GitLab, GitHub and Bitbucket with Gitpod buttons",
"main": "src/gitpodify.js",
"scripts": {
"build": "yarn clean && npx tsc && yarn webpack",
"build:safari": " xcrun safari-web-extension-converter . --app-name Gitpod --bundle-identifier io.gitpod.Gitpod",
"package": "yarn clean:package && zip -rD --exclude='src/*.ts' gitpod.xpi dist/bundles icons src manifest.json",
"clean": "rimraf dist && yarn clean:package",
"clean:package": "rimraf gitpod.xpi",
"webpack": "webpack",
"watch": "webpack -w"
},
"dependencies": {
"@types/events": "^3.0.0",
"dom-loaded": "^2.0.0",
"github-injection": "^1.0.1",
"select-dom": "^5.1.0",
"webextension-polyfill": "^0.7.0"
},
"devDependencies": {
"copy-webpack-plugin": "^7.0.0",
"css-loader": "^5.0.2",
"rimraf": "^3.0.0",
"source-map-loader": "^2.0.1",
"style-loader": "^2.0.0",
"webextension-polyfill-ts": "^0.25.0",
"webpack": "^5.22.0",
"webpack-cli": "^4.5.0"
}
}