2018-10-10 10:32:21 -07:00
|
|
|
{
|
2018-12-12 15:51:03 -08:00
|
|
|
"name": "helloworld-sample",
|
|
|
|
|
"displayName": "helloworld-sample",
|
2018-10-10 10:32:21 -07:00
|
|
|
"description": "HelloWorld example for VS Code",
|
|
|
|
|
"version": "0.0.1",
|
2018-10-15 11:52:55 -07:00
|
|
|
"publisher": "vscode-samples",
|
2018-12-12 15:51:03 -08:00
|
|
|
"repository": "https://github.com/Microsoft/vscode-extension-samples/helloworld-sample",
|
2018-10-10 10:32:21 -07:00
|
|
|
"engines": {
|
2025-08-07 07:57:14 -07:00
|
|
|
"vscode": "^1.100.0"
|
2018-10-10 10:32:21 -07:00
|
|
|
},
|
|
|
|
|
"categories": [
|
|
|
|
|
"Other"
|
|
|
|
|
],
|
2022-12-08 13:55:11 -08:00
|
|
|
"activationEvents": [],
|
2018-10-29 12:11:44 -07:00
|
|
|
"main": "./out/extension.js",
|
2018-10-10 10:32:21 -07:00
|
|
|
"contributes": {
|
|
|
|
|
"commands": [
|
|
|
|
|
{
|
2018-12-12 15:51:03 -08:00
|
|
|
"command": "extension.helloWorld",
|
|
|
|
|
"title": "Hello World"
|
2018-10-10 10:32:21 -07:00
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"vscode:prepublish": "npm run compile",
|
2019-05-30 18:28:15 -07:00
|
|
|
"compile": "tsc -p ./",
|
2024-10-26 17:44:03 -07:00
|
|
|
"lint": "eslint",
|
2019-05-09 14:50:48 -07:00
|
|
|
"watch": "tsc -watch -p ./"
|
2018-10-10 10:32:21 -07:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2024-10-26 17:44:03 -07:00
|
|
|
"@eslint/js": "^9.13.0",
|
|
|
|
|
"@stylistic/eslint-plugin": "^2.9.0",
|
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-10-26 17:44:03 -07:00
|
|
|
"eslint": "^9.13.0",
|
2025-03-03 09:17:39 -08:00
|
|
|
"typescript": "^5.8.2",
|
2025-03-03 09:59:28 -08:00
|
|
|
"typescript-eslint": "^8.26.0"
|
2018-10-10 10:32:21 -07:00
|
|
|
}
|
2025-08-06 23:43:14 -07:00
|
|
|
}
|