|
1 | 1 | { |
2 | 2 | "name": "git-crypt-vscode", |
3 | | - "displayName": "Git Crypt Diff", |
| 3 | + "displayName": "git-crypt Diff", |
4 | 4 | "description": "View diffs of git-crypt encrypted files in VSCode", |
5 | | - "version": "0.1.0", |
| 5 | + "version": "1.0.0", |
6 | 6 | "publisher": "j-256", |
7 | 7 | "license": "MIT", |
8 | 8 | "repository": { |
|
12 | 12 | "engines": { |
13 | 13 | "vscode": "^1.85.0" |
14 | 14 | }, |
15 | | - "categories": ["SCM Providers"], |
16 | | - "activationEvents": ["onStartupFinished"], |
17 | | - "extensionDependencies": ["vscode.git"], |
| 15 | + "categories": [ |
| 16 | + "SCM Providers" |
| 17 | + ], |
| 18 | + "activationEvents": [ |
| 19 | + "onStartupFinished" |
| 20 | + ], |
| 21 | + "extensionDependencies": [ |
| 22 | + "vscode.git" |
| 23 | + ], |
18 | 24 | "main": "./dist/extension.js", |
19 | 25 | "contributes": { |
20 | 26 | "commands": [ |
|
45 | 51 | }, |
46 | 52 | "scripts": { |
47 | 53 | "preversion": "npm run build && npm test", |
| 54 | + "postversion": "git push origin main v$npm_package_version && npm run release", |
| 55 | + "release": "npm run package && gh release create v$npm_package_version git-crypt-vscode-$npm_package_version.vsix --title v$npm_package_version --generate-notes", |
48 | 56 | "vscode:prepublish": "npm run build", |
49 | 57 | "build": "node esbuild.js", |
50 | 58 | "watch": "node esbuild.js --watch", |
51 | 59 | "test": "node --import tsx --test test/*.test.ts", |
52 | | - "package": "vsce package" |
| 60 | + "package": "vsce package", |
| 61 | + "publish": "vsce publish" |
53 | 62 | }, |
54 | 63 | "devDependencies": { |
55 | 64 | "@types/vscode": "^1.85.0", |
|
0 commit comments