-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
52 lines (52 loc) · 2.74 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
{
"name": "tabby",
"version": "3.2.1",
"description": "Tabby is an open-source window & tab manager that can manage great amounts of windows and tabs at ease.",
"private": true,
"scripts": {
"build:cartographer": "cd cartographer && wasm-pack build && cd ..",
"gen-manifest:chrome": "node gen-manifest.js chrome",
"gen-manifest:webext": "node gen-manifest.js webext",
"gen-manifest:firefox": "npm run gen-manifest:webext",
"build:chrome": "npm run build:cartographer && webpack --config chrome.webpack.config.js && npm run gen-manifest:chrome",
"build:chrome.dev": "npm run build:cartographer && webpack --config chrome.webpack.dev.config.js && npm run gen-manifest:chrome",
"build:webext": "npm run build:cartographer && webpack --config webext.webpack.config.js && npm run gen-manifest:webext",
"build:webext.dev": "npm run build:cartographer && webpack --config webext.webpack.dev.config.js && npm run gen-manifest:webext",
"build:firefox": "npm run build:cartographer && webpack --config firefox.webpack.config.js && npm run gen-manifest:firefox",
"build:firefox.dev": "npm run build:cartographer && webpack --config firefox.webpack.dev.config.js && npm run gen-manifest:firefox",
"clean:background": "rimraf dist/background/background.js* dist/background/captureTab.js* dist/background/commands.js* dist/background/tmpClear.js*",
"clean:content": "rimraf dist/content/content.js*",
"clean:options": "rimraf dist/options/options.js*",
"clean:popup": "rimraf dist/popup/popup.js*",
"clean:manifest": "rimraf dist/manifest.json",
"clean:cartographer": "rimraf dist/*.module.wasm && rimraf cartographer/target cartographer/pkg",
"clean": "npm run clean:background && npm run clean:content && npm run clean:options && npm run clean:popup && npm run clean:manifest && npm run clean:cartographer"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bill13579/tabby.git"
},
"author": "BillK <[email protected]>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/Bill13579/tabby/issues"
},
"homepage": "https://github.com/Bill13579/tabby#readme",
"devDependencies": {
"circular-dependency-plugin": "^5.2.2",
"eslint": "^8.34.0",
"rimraf": "^3.0.2",
"webextension-polyfill": "^0.10.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"dompurify": "^3.0.1",
"get-favicons": "github:Bill13579/get-favicons",
"lz-string": "^1.5.0",
"marked": "^4.2.12",
"proxy-polyfill": "^0.3.2",
"smoothscroll-polyfill": "^0.4.4",
"tabby": "file:"
}
}