forked from kentxxq/tabby-cloud-sync-settings
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.46 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.46 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "tabby-sync-selective",
"version": "1.3.4",
"date": "6th July 2026",
"description": "Selectively sync Tabby config across devices via WebDAV and other cloud services. Merge appearance, profiles, and more without overwriting platform-specific settings.",
"keywords": [
"tabby-plugin",
"terminus-plugin"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "webpack --progress --color --mode=production && npm run postbuild",
"watch": "webpack --progress --color --watch",
"prepublishOnly": "npm run build --mode=production",
"lint": "eslint --ext ts */src */lib",
"test": "jest",
"postbuild": "cp src/data/mockdata.json dist/src/data/mockdata.json",
"deploy:local-tabby": "npm run build && PLUGIN_DIR=\"$HOME/Library/Application Support/tabby/plugins/node_modules/tabby-sync-selective\" && mkdir -p \"$PLUGIN_DIR/dist\" && cp dist/index.js dist/index.js.LICENSE.txt \"$PLUGIN_DIR/dist/\" && cp package.json \"$PLUGIN_DIR/\" && rm -f \"$PLUGIN_DIR/index.js\" \"$PLUGIN_DIR/index.js.LICENSE.txt\""
},
"files": [
"dist"
],
"author": "chomoe327",
"support_url": "https://github.com/chomoe327/tabby-cloud-sync-settings",
"github_url": "https://github.com/chomoe327/tabby-cloud-sync-settings",
"license": "MIT",
"devDependencies": {
"@angular/animations": "^7.2.8",
"@angular/common": "^7.2.8",
"@angular/core": "^7.2.8",
"@angular/forms": "^7.2.8",
"@angular/platform-browser": "^7.2.8",
"@ng-bootstrap/ng-bootstrap": "^2.2.0",
"@types/jest": "^26.0.23",
"@types/js-yaml": "^4.0.0",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"acorn-import-assertions": "^1.8.0",
"apply-loader": "^2.0.0",
"aws-sdk": "niceit/aws-sdk-js",
"axios": "^0.21.1",
"basic-ftp": "^4.6.6",
"byte-length": "^1.0.2",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^5.1.1",
"electron": "^14.2.7",
"eslint": "^7.32.0",
"glob-to-regexp": "^0.4.1",
"hot-patcher": "1.0.0",
"isomorphic-form-data": "^2.0.0",
"jest": "^27.0.6",
"js-yaml": "^4.1.0",
"json-parse-even-better-errors": "^6.0.0",
"keytar": "^7.6.0",
"md5": "^2.3.0",
"micromatch": "^4.0.8",
"moment": "^2.29.3",
"ngx-toastr": "^8.8.0",
"pug": "^3.0.2",
"pug-loader": "^2.4.0",
"rxjs": "^6.2.1",
"sass": "1.77.8",
"sass-loader": "^11.0.1",
"semver": "^7.3.8",
"strip-ansi": "^5.0.0",
"style-loader": "^2.0.0",
"terminus-core": "^1.0.140",
"terminus-settings": "^1.0.140",
"terminus-terminal": "^1.0.140",
"terser-webpack-plugin": "^5.6.1",
"to-string-loader": "^1.1.6",
"triple-beam": "^1.4.1",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5",
"webpack": "^5.88.2",
"webpack-cli": "^4.5.0"
},
"peerDependencies": {
"@angular/core": "^4.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chomoe327/tabby-cloud-sync-settings.git"
},
"dependencies": {
"crypto-js": "^4.0.0",
"dropbox": "^10.34.0",
"webdav": "^4.6.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"bugs": {
"url": "https://github.com/chomoe327/tabby-cloud-sync-settings/issues"
},
"homepage": "https://github.com/chomoe327/tabby-cloud-sync-settings",
"pnpm": {
"overrides": {
"is-stream": "2.0.1",
"hot-patcher": "1.0.0"
}
}
}