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": {
|
2025-08-07 07:57:14 -07:00
|
|
|
"vscode": "^1.100.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 ./",
|
2024-10-26 17:44:03 -07:00
|
|
|
"lint": "eslint",
|
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": {
|
2024-10-26 17:44:03 -07:00
|
|
|
"@eslint/js": "^9.13.0",
|
|
|
|
|
"@stylistic/eslint-plugin": "^2.9.0",
|
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",
|
2025-08-06 23:43:14 -07:00
|
|
|
"@types/node": "^22",
|
2025-08-07 07:57:14 -07:00
|
|
|
"@types/vscode": "^1.100.0",
|
2024-04-01 16:29:31 -07:00
|
|
|
"@vscode/test-electron": "^2.3.9",
|
2024-10-26 17:44:03 -07:00
|
|
|
"eslint": "^9.13.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",
|
2025-08-06 23:43:14 -07:00
|
|
|
"typescript": "^5.9.2",
|
|
|
|
|
"typescript-eslint": "^8.39.0"
|
2019-05-22 16:57:34 -07:00
|
|
|
}
|
2025-08-06 23:43:14 -07:00
|
|
|
}
|