mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"name": "uri-handler-sample",
|
|
"publisher": "vscode-samples",
|
|
"description": "Uri Handler Sample",
|
|
"version": "0.0.1",
|
|
"engines": {
|
|
"vscode": "^1.46.0"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"activationEvents": [
|
|
"onCommand:uri-handler-sample.start"
|
|
],
|
|
"main": "./out/extension.js",
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "uri-handler-sample.start",
|
|
"title": "Start handling Uris"
|
|
}
|
|
]
|
|
},
|
|
"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/glob": "^7.1.3",
|
|
"@types/mocha": "^8.0.4",
|
|
"@types/node": "^16.11.7",
|
|
"@types/vscode": "^1.46.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.30.0",
|
|
"@typescript-eslint/parser": "^5.30.0",
|
|
"@vscode/test-electron": "^1.6.1",
|
|
"eslint": "^8.13.0",
|
|
"glob": "^7.1.6",
|
|
"mocha": "^8.1.3",
|
|
"typescript": "^4.7.2"
|
|
}
|
|
}
|