2021-07-19 16:09:29 +02:00
{
"name" : "welcome-view-content-sample" ,
"publisher" : "vscode-samples" ,
"description" : "Uri Handler Sample" ,
"version" : "0.0.1" ,
2022-02-09 11:48:55 -08:00
"private" : true ,
2022-04-13 15:12:23 -07:00
"license" : "MIT" ,
2021-07-19 16:09:29 +02:00
"engines" : {
2022-12-08 13:55:11 -08:00
"vscode" : "^1.74.0"
2021-07-19 16:09:29 +02:00
} ,
"categories" : [
"Other"
] ,
2022-12-08 13:55:11 -08:00
"activationEvents" : [ ] ,
2021-07-19 16:09:29 +02:00
"main" : "./out/extension.js" ,
"contributes" : {
"commands" : [
{
"command" : "welcome-view-content-sample.hello" ,
"title" : "Hello World!"
}
] ,
"viewsWelcome" : [
{
"view" : "workbench.explorer.emptyView" ,
"contents" : "You can have paragraphs of text here. You can have [links](https://code.visualstudio.com) to external sources or [internal commands](command:welcome-view-content-sample.hello).\nUse new lines to have new paragraphs.\nPlace a link alone in a paragraph to make it a button\n[Hello](command:welcome-view-content-sample.hello)"
}
]
} ,
"scripts" : {
"vscode:prepublish" : "npm run compile" ,
"compile" : "tsc -p ./" ,
"watch" : "tsc -watch -p ./" ,
"pretest" : "npm run compile && npm run lint" ,
"lint" : "eslint src --ext ts" ,
"test" : "node ./out/test/runTest.js"
} ,
"devDependencies" : {
"@types/glob" : "^7.1.3" ,
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" ,
2023-05-01 11:59:34 -07:00
"@vscode/test-electron" : "^2.3.0" ,
2022-11-04 13:52:32 -07:00
"eslint" : "^8.26.0" ,
2021-07-19 16:09:29 +02:00
"glob" : "^7.1.6" ,
2023-03-20 14:42:14 -07:00
"typescript" : "^5.0.2"
2021-07-19 16:09:29 +02:00
}
2022-02-09 11:35:30 -08:00
}