2021-08-20 12:04:40 +02:00
|
|
|
{
|
|
|
|
|
"name": "helloworld-web-sample",
|
|
|
|
|
"displayName": "helloworld-web-sample",
|
|
|
|
|
"description": "HelloWorld example for VS Code in the browser",
|
|
|
|
|
"version": "0.0.1",
|
|
|
|
|
"publisher": "vscode-samples",
|
2022-02-09 11:48:55 -08:00
|
|
|
"private": true,
|
|
|
|
|
"license": "MIT",
|
2021-08-20 12:04:40 +02:00
|
|
|
"repository": "https://github.com/microsoft/vscode-extension-samples/helloworld-web-sample",
|
|
|
|
|
"engines": {
|
2025-08-07 07:57:14 -07:00
|
|
|
"vscode": "^1.100.0"
|
2021-08-20 12:04:40 +02:00
|
|
|
},
|
|
|
|
|
"categories": [
|
|
|
|
|
"Other"
|
|
|
|
|
],
|
2022-12-08 13:55:11 -08:00
|
|
|
"activationEvents": [],
|
2021-08-20 12:04:40 +02:00
|
|
|
"browser": "./dist/web/extension.js",
|
|
|
|
|
"contributes": {
|
|
|
|
|
"commands": [
|
|
|
|
|
{
|
|
|
|
|
"command": "helloworld-web-sample.helloWorld",
|
|
|
|
|
"title": "Hello World"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
2024-08-03 23:48:07 +02:00
|
|
|
"start": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=.",
|
2021-08-20 12:04:40 +02:00
|
|
|
"test": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. --extensionTestsPath=dist/web/test/suite/index.js",
|
|
|
|
|
"pretest": "npm run compile-web",
|
|
|
|
|
"vscode:prepublish": "npm run package-web",
|
2021-09-15 23:30:24 +02:00
|
|
|
"compile-web": "webpack",
|
|
|
|
|
"watch-web": "webpack --watch",
|
|
|
|
|
"package-web": "webpack --mode production --devtool hidden-source-map",
|
2024-10-26 17:44:03 -07:00
|
|
|
"lint": "eslint"
|
2021-08-20 12:04:40 +02:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2024-10-26 17:44:03 -07:00
|
|
|
"@eslint/js": "^9.13.0",
|
|
|
|
|
"@stylistic/eslint-plugin": "^2.9.0",
|
2025-02-14 16:49:06 +01:00
|
|
|
"@types/mocha": "^10.0.10",
|
2025-08-07 07:57:14 -07:00
|
|
|
"@types/vscode": "^1.100.0",
|
2025-02-14 16:49:06 +01:00
|
|
|
"@types/webpack-env": "^1.18.8",
|
|
|
|
|
"@vscode/test-web": "^0.0.66",
|
|
|
|
|
"assert": "^2.1.0",
|
|
|
|
|
"eslint": "^9.20.1",
|
|
|
|
|
"mocha": "^11.1.0",
|
2022-02-09 11:44:13 -08:00
|
|
|
"process": "^0.11.10",
|
2025-02-14 16:49:06 +01:00
|
|
|
"ts-loader": "^9.5.2",
|
2025-08-06 23:43:14 -07:00
|
|
|
"typescript": "^5.9.2",
|
|
|
|
|
"typescript-eslint": "^8.39.0",
|
2025-02-14 16:49:06 +01:00
|
|
|
"webpack": "^5.98.0",
|
|
|
|
|
"webpack-cli": "^6.0.1"
|
2021-08-20 12:04:40 +02:00
|
|
|
}
|
2025-08-07 07:57:14 -07:00
|
|
|
}
|