-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.67 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
53
54
55
56
57
{
"name": "tabby-highlight",
"description": "Tabby terminal keyword highlight plugin",
"module": "index.ts",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"type": "commonjs",
"license": "MIT",
"version": "2.4.0",
"repository": {
"url": "git+https://github.com/moemoechu/tabby-highlight.git"
},
"author": {
"name": "moemoechu"
},
"keywords": [
"tabby-plugin"
],
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && webpack --progress --color",
"watch": "webpack --progress --color --watch",
"deploy": "npm run build && rm -rf /mnt/hgfs/Tabby/data/plugins/node_modules/tabby-highlight && mkdir /mnt/hgfs/Tabby/data/plugins/node_modules/tabby-highlight && cp -r ./dist package.json /mnt/hgfs/Tabby/data/plugins/node_modules/tabby-highlight/",
"prepublishOnly": "npm run build",
"copyDeps": "cp -rf /mnt/hgfs/Tabby/resources/builtin-plugins/* ./node_modules/"
},
"devDependencies": {
"@angular/animations": "^15",
"@angular/cdk": "^15",
"@angular/common": "^15",
"@angular/core": "^15",
"@angular/forms": "^15",
"@angular/platform-browser": "^15",
"@ng-bootstrap/ng-bootstrap": "^14",
"@types/uuid": "^9.0.7",
"@types/webpack-env": "^1",
"css-loader": "^6",
"html-loader": "^4.2.0",
"ngx-toastr": "^16",
"node-sass": "^9",
"prettier": "^3.2.1",
"sass-loader": "^13",
"style-loader": "^3",
"tabby-core": "latest",
"tabby-electron": "latest",
"tabby-settings": "latest",
"tabby-terminal": "latest",
"ts-loader": "^9",
"typescript": "^4",
"utils-decorators": "^2",
"uuid": "^9.0.1",
"webpack": "^5",
"webpack-cli": "^5"
}
}