diff options
author | Indrajith K L | 2019-12-30 20:01:49 +0530 |
---|---|---|
committer | Indrajith K L | 2019-12-30 20:01:49 +0530 |
commit | 6534757b525c98abf03f1e04fff77b1b05e4d66e (patch) | |
tree | 158e7532d83457d0ede975edd88e04302302eddd /package.json | |
parent | e655a66b13b961341bd10156108529937ce2bf5a (diff) | |
download | KopyPlugin-6534757b525c98abf03f1e04fff77b1b05e4d66e.tar.gz KopyPlugin-6534757b525c98abf03f1e04fff77b1b05e4d66e.tar.bz2 KopyPlugin-6534757b525c98abf03f1e04fff77b1b05e4d66e.zip |
* Enchancements
* Fixes - Your clipboard will not be corrupted
* Removed unwanted menus - Now Kopy.io Plugin will show a Notification box with options to Open/Copy your Kopy.io'ed urls
* Adds Encryption to your data - Your data is encrypted by default (Unless you share the url with decryption key -- Key is after the '#' part in the url)
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/package.json b/package.json index 59b3e1c..5453f7a 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "kopy-io-plugin", "displayName": "Kopy.io Plugin", "description": "An unofficial plugin for kopy.io", - "version": "0.3.0", + "version": "0.5.0", "publisher": "indrajithkl", "engines": { "vscode": "^1.16.0" @@ -39,14 +39,15 @@ "test": "npm run compile && node ./node_modules/vscode/bin/test" }, "devDependencies": { - "typescript": "^2.5.2", - "vscode": "^1.1.5", - "mocha": "^3.5.0", + "@types/mocha": "^2.2.42", "@types/node": "^7.0.43", - "@types/mocha": "^2.2.42" + "mocha": "^3.5.0", + "typescript": "^2.5.2", + "vscode": "^1.1.5" }, "dependencies": { "axios": "^0.16.2", - "copy-paste": "^1.3.0" + "copy-paste": "^1.3.0", + "crypto-js": "^3.1.9-1" } -}
\ No newline at end of file +} |