-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.38 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
{
"name": "browser_terminal",
"version": "1.4.5",
"description": "Extension that allows you to open a native shell in the browser",
"scripts": {
"start": "npm run start:firefox",
"start:chrome": "npm run build_native && npm run manifest:install && npm run extension start:chrome; npm run manifest:uninstall",
"start:firefox": "npm run build_native && npm run manifest:install && npm run extension start:firefox; npm run manifest:uninstall",
"build": "npm run extension build",
"build:chromium": "npm run extension build:chromium",
"lint": "web-ext lint -s src",
"sign": "npm run build && web-ext sign -s dist",
"manifest:install": "npm run build_native && ./native/browser_terminal --install",
"manifest:uninstall": "npm run build_native && ./native/browser_terminal --uninstall",
"extension": "node scripts/extension.js",
"build_native": "go build -C native",
"clean": "rm -rf ./dist ./node_modules ./native/browser_terminal"
},
"devDependencies": {
"@types/firefox-webext-browser": "^120.0.0"
},
"type": "module",
"dependencies": {
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/xterm": "^5.5.0",
"common-web-styles": "github:BatteredBunny/common-web-styles",
"esbuild": "^0.20.2",
"esbuild-sass-plugin": "^3.2.0",
"web-ext": "^7.11.0",
"webextension-polyfill": "^0.11.0"
}
}