-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.27 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-quick-restart",
"version": "1.0.4",
"description": "Plugin that allows you to quickly restart Tabby with a hotkey",
"keywords": [
"tabby-plugin",
"tabby"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "webpack --progress --color",
"watch": "webpack --progress --color --watch",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"author": {
"name": "Benjamin Folkens",
"email": "benjaminfolkens@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/flkns/tabby-quick-restart.git"
},
"bugs": {
"url": "https://github.com/flkns/tabby-quick-restart/issues"
},
"homepage": "https://github.com/flkns/tabby-quick-restart",
"dependencies": {
"rxjs": "^6.6.7",
"tabby-core": "^1.0.156",
"tabby-settings": "^1.0.156",
"tabby-terminal": "^1.0.156"
},
"devDependencies": {
"@types/webpack-env": "^1.16.2",
"apply-loader": "^2.0.0",
"css-loader": "^6.3.0",
"node-sass": "^6.0.1",
"pug": "^2.0.4",
"pug-loader": "^2.4.0",
"sass-loader": "^12.1.0",
"style-loader": "^3.3.0",
"ts-loader": "^9.2.6",
"typescript": "^4.4.3",
"webpack": "^5.53.0",
"webpack-cli": "^4.8.0"
}
}