2019-05-22 16:57:34 -07:00
|
|
|
{
|
|
|
|
|
"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": {
|
2022-12-08 13:55:11 -08:00
|
|
|
"vscode": "^1.74.0"
|
2019-05-22 16:57:34 -07:00
|
|
|
},
|
|
|
|
|
"categories": [
|
|
|
|
|
"Other"
|
|
|
|
|
],
|
2022-12-08 13:55:11 -08:00
|
|
|
"activationEvents": [],
|
2019-05-22 16:57:34 -07:00
|
|
|
"main": "./out/extension.js",
|
|
|
|
|
"contributes": {
|
|
|
|
|
"commands": [
|
|
|
|
|
{
|
|
|
|
|
"command": "extension.helloWorld",
|
|
|
|
|
"title": "Hello World"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"vscode:prepublish": "npm run compile",
|
2019-05-29 23:03:26 +08:00
|
|
|
"compile": "tsc -p ./",
|
2022-11-04 13:52:32 -07:00
|
|
|
"lint": "eslint \"src/**/*.ts\"",
|
2019-05-23 16:00:20 -07:00
|
|
|
"watch": "tsc -watch -p ./",
|
2019-05-29 23:03:26 +08:00
|
|
|
"pretest": "npm run compile",
|
2019-05-23 16:00:20 -07:00
|
|
|
"test": "node ./out/test/runTest.js"
|
2019-05-22 16:57:34 -07:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2019-05-23 16:00:20 -07:00
|
|
|
"@types/glob": "^7.1.1",
|
2023-01-30 11:43:23 -08:00
|
|
|
"@types/mocha": "^10.0.1",
|
2022-05-24 15:12:22 -07:00
|
|
|
"@types/node": "^16.11.7",
|
2022-12-08 13:55:11 -08:00
|
|
|
"@types/vscode": "^1.73.0",
|
2022-11-04 13:52:32 -07:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.42.0",
|
|
|
|
|
"@typescript-eslint/parser": "^5.42.0",
|
2021-07-15 12:19:44 -07:00
|
|
|
"@vscode/test-electron": "^1.6.1",
|
2022-11-04 13:52:32 -07:00
|
|
|
"eslint": "^8.26.0",
|
2021-07-14 14:19:44 -04:00
|
|
|
"glob": "^7.1.4",
|
2023-01-30 11:43:23 -08:00
|
|
|
"mocha": "^10.2.0",
|
2021-07-14 14:19:44 -04:00
|
|
|
"source-map-support": "^0.5.12",
|
2023-01-30 10:35:24 -08:00
|
|
|
"typescript": "^4.9.4"
|
2019-05-22 16:57:34 -07:00
|
|
|
}
|
2021-07-14 14:19:44 -04:00
|
|
|
}
|