forked from Domain/terminus-quick-cmds
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·74 lines (74 loc) · 2.07 KB
/
package.json
File metadata and controls
executable file
·74 lines (74 loc) · 2.07 KB
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
{
"name": "tabby-quick-cmds",
"version": "1.2.1",
"description": "Quick commands manager for Tabby",
"homepage": "https://github.com/minyoad/tabby-quick-cmds",
"keywords": [
"terminus-plugin",
"tabby-plugin",
"quick-commands"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "webpack --progress --color",
"watch": "webpack --progress --color --watch",
"pub": "npm run pack:zip",
"pack:zip": "powershell Compress-Archive -Path dist,package.json,README.md,README_CN.md,LICENSE -DestinationPath tabby-quick-cmds-v$env:npm_package_version.zip -Force",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"author": "minyoad",
"license": "MIT",
"devDependencies": {
"@types/webpack-env": "^1.16.3",
"apply-loader": "^2.0.0",
"awesome-typescript-loader": "^5.2.1",
"css-loader": "^6.7.1",
"electron": "^18.0.3",
"pug": "^3.0.2",
"pug-loader": "^2.4.0",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"svg-inline-loader": "^0.8.2",
"to-string-loader": "^1.2.0",
"typescript": "^4.6.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"peerDependencies": {
"@angular/common": "^13.0.0",
"@angular/core": "^13.0.0",
"@angular/forms": "^13.0.0",
"@ng-bootstrap/ng-bootstrap": "^12.0.0",
"tabby-core": "^1.0.0",
"tabby-settings": "^1.0.0",
"tabby-terminal": "^1.0.0"
},
"dependencies": {
"@angular/animations": "^15.2.6",
"@angular/common": "^15.2.6",
"@angular/core": "^15.2.6",
"@angular/forms": "^15.2.6",
"@angular/platform-browser": "^15.2.6",
"@ng-bootstrap/ng-bootstrap": "^12.0.0",
"ngx-toastr": "^14.3.0",
"rxjs": "~7.5.0",
"tabby-core": "^1.0.156",
"tabby-settings": "^1.0.156",
"tabby-terminal": "^1.0.156",
"ts-loader": "^9.5.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/minyoad/tabby-quick-cmds.git"
},
"bugs": {
"url": "https://github.com/minyoad/tabby-quick-cmds/issues"
},
"engines": {
"node": ">=14.0.0 <26.0.0"
}
}