Scaffolds generate
This commit is contained in:
45
package.json
Normal file
45
package.json
Normal file
@@ -0,0 +1,45 @@
|
||||
{
|
||||
"name": "gitcheck",
|
||||
"displayName": "Git User Check",
|
||||
"description": "Checking the user's compliance with the repository",
|
||||
"version": "0.0.1",
|
||||
"engines": {
|
||||
"vscode": "^1.62.0"
|
||||
},
|
||||
"categories": [
|
||||
"Other"
|
||||
],
|
||||
"activationEvents": [
|
||||
"onCommand:gitcheck.helloWorld"
|
||||
],
|
||||
"main": "./out/extension.js",
|
||||
"contributes": {
|
||||
"commands": [
|
||||
{
|
||||
"command": "gitcheck.helloWorld",
|
||||
"title": "Hello World"
|
||||
}
|
||||
]
|
||||
},
|
||||
"scripts": {
|
||||
"vscode:prepublish": "npm run compile",
|
||||
"compile": "tsc -p ./",
|
||||
"watch": "tsc -watch -p ./",
|
||||
"pretest": "npm run compile && npm run lint",
|
||||
"lint": "eslint src --ext ts",
|
||||
"test": "node ./out/test/runTest.js"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/vscode": "^1.62.0",
|
||||
"@types/glob": "^7.1.4",
|
||||
"@types/mocha": "^9.0.0",
|
||||
"@types/node": "14.17.27",
|
||||
"@typescript-eslint/eslint-plugin": "^5.1.0",
|
||||
"@typescript-eslint/parser": "^5.1.0",
|
||||
"eslint": "^8.1.0",
|
||||
"glob": "^7.1.7",
|
||||
"mocha": "^9.1.3",
|
||||
"typescript": "^4.4.4",
|
||||
"@vscode/test-electron": "^1.6.2"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user