mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-05 08:57:49 +02:00
25 lines
621 B
JSON
25 lines
621 B
JSON
{
|
|
"name": "pas2jsdemoextension",
|
|
"description": "Minimal HelloWorld pas2js example for VS Code",
|
|
"version": "0.0.1",
|
|
"publisher": "pas2js team",
|
|
"engines": {
|
|
"vscode": "^1.32.0"
|
|
},
|
|
"activationEvents": [
|
|
"onCommand:pas2jsdemoextension.helloWorld"
|
|
],
|
|
"main": "js/packageglue.js",
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "pas2jsdemoextension.helloWorld",
|
|
"title": "Pas2js Extension Hello World"
|
|
}
|
|
]
|
|
},
|
|
"scripts": {},
|
|
"devDependencies": {
|
|
"@types/vscode": "^1.32.0"
|
|
}
|
|
} |