mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
49 lines
1.1 KiB
JSON
49 lines
1.1 KiB
JSON
{
|
|
"name": "helloworld-sample",
|
|
"displayName": "helloworld-sample",
|
|
"description": "HelloWorld example for VS Code",
|
|
"version": "0.0.1",
|
|
"publisher": "vscode-samples",
|
|
"repository": "https://github.com/Microsoft/vscode-extension-samples/helloworld-sample",
|
|
"engines": {
|
|
"vscode": "^1.32.0"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"activationEvents": [
|
|
"onCommand:extension.helloWorld"
|
|
],
|
|
"main": "./out/extension.js",
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "extension.helloWorld",
|
|
"title": "Hello World"
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"vscode:prepublish": "npm run compile",
|
|
"compile": "tsc -p ./",
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
"watch": "tsc -watch -p ./",
|
|
"pretest": "npm run compile",
|
|
"test": "node ./out/test/runTest.js"
|
|
},
|
|
"devDependencies": {
|
|
"@types/glob": "^7.1.1",
|
|
"@types/mocha": "^5.2.6",
|
|
"@types/node": "^12.12.0",
|
|
"@types/vscode": "^1.32.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.19.0",
|
|
"@typescript-eslint/parser": "^5.19.0",
|
|
"@vscode/test-electron": "^1.6.1",
|
|
"eslint": "^8.13.0",
|
|
"glob": "^7.1.4",
|
|
"mocha": "^6.1.4",
|
|
"source-map-support": "^0.5.12",
|
|
"typescript": "^4.6.3"
|
|
}
|
|
}
|