mirror of
https://github.com/chenasraf/gi-gen-vscode-extension.git
synced 2026-05-17 17:58:04 +00:00
50 lines
1.2 KiB
JSON
50 lines
1.2 KiB
JSON
{
|
|
"name": "gi-gen",
|
|
"displayName": "GI Gen - Smart Gitignore Generator",
|
|
"description": "Generates a .gitignore for your project",
|
|
"publisher": "casraf",
|
|
"repository": "https://github.com/chenasraf/gi-gen-vscode-extension",
|
|
"license": "MIT",
|
|
"version": "0.0.3",
|
|
"engines": {
|
|
"vscode": "^1.67.0"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"activationEvents": [
|
|
"onCommand:gi-gen.generate",
|
|
"onCommand:gi-gen.download"
|
|
],
|
|
"main": "./out/extension.js",
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "gi-gen.generate",
|
|
"title": "Generate .gitignore File: Run"
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"vscode:prepublish": "yarn run compile",
|
|
"compile": "tsc -p ./",
|
|
"watch": "tsc -watch -p ./",
|
|
"pretest": "yarn run compile && yarn run lint",
|
|
"lint": "eslint src --ext ts",
|
|
"test": "node ./out/test/runTest.js"
|
|
},
|
|
"devDependencies": {
|
|
"@types/vscode": "^1.67.0",
|
|
"@types/glob": "^7.2.0",
|
|
"@types/mocha": "^9.1.1",
|
|
"@types/node": "14.x",
|
|
"@typescript-eslint/eslint-plugin": "^5.21.0",
|
|
"@typescript-eslint/parser": "^5.21.0",
|
|
"eslint": "^8.14.0",
|
|
"glob": "^8.0.1",
|
|
"mocha": "^9.2.2",
|
|
"typescript": "^4.6.4",
|
|
"@vscode/test-electron": "^2.1.3"
|
|
}
|
|
}
|