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": {
|
2022-12-08 13:55:11 -08:00
|
|
|
"vscode": "^1.74.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": {
|
|
|
|
|
"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",
|
2021-08-20 12:04:40 +02:00
|
|
|
"lint": "eslint src --ext ts"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2021-09-15 23:30:24 +02:00
|
|
|
"@types/mocha": "^9.0.0",
|
2022-12-08 13:55:11 -08:00
|
|
|
"@types/vscode": "^1.73.0",
|
2022-02-09 11:44:13 -08:00
|
|
|
"@types/webpack-env": "^1.16.2",
|
2023-09-13 14:45:34 -07:00
|
|
|
"@typescript-eslint/eslint-plugin": "^6.7.0",
|
|
|
|
|
"@typescript-eslint/parser": "^6.7.0",
|
2022-02-22 17:36:07 +01:00
|
|
|
"@vscode/test-web": "^0.0.22",
|
2022-02-09 11:44:13 -08:00
|
|
|
"assert": "^2.0.0",
|
2022-11-04 13:52:32 -07:00
|
|
|
"eslint": "^8.26.0",
|
2022-02-09 11:44:13 -08:00
|
|
|
"mocha": "^9.2.0",
|
|
|
|
|
"process": "^0.11.10",
|
2021-09-15 23:30:24 +02:00
|
|
|
"ts-loader": "^9.2.5",
|
2024-03-14 16:47:53 -07:00
|
|
|
"typescript": "^5.4.2",
|
2021-09-15 23:30:24 +02:00
|
|
|
"webpack": "^5.52.1",
|
2022-02-09 11:44:13 -08:00
|
|
|
"webpack-cli": "^4.8.0"
|
2021-08-20 12:04:40 +02:00
|
|
|
}
|
|
|
|
|
}
|