Files
vscode-extension-samples/uri-handler-sample/package.json

46 lines
1.1 KiB
JSON
Raw Normal View History

{
"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": "^12.11.7",
"@types/vscode": "^1.46.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
2021-07-15 12:19:44 -07:00
"@vscode/test-electron": "^1.6.1",
"eslint": "^7.15.0",
"glob": "^7.1.6",
"mocha": "^8.1.3",
2022-02-09 11:35:30 -08:00
"typescript": "^4.5.5"
}
}