package.json 621 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "pas2jsdemoextension",
  3. "description": "Minimal HelloWorld pas2js example for VS Code",
  4. "version": "0.0.1",
  5. "publisher": "pas2js team",
  6. "engines": {
  7. "vscode": "^1.32.0"
  8. },
  9. "activationEvents": [
  10. "onCommand:pas2jsdemoextension.helloWorld"
  11. ],
  12. "main": "js/packageglue.js",
  13. "contributes": {
  14. "commands": [
  15. {
  16. "command": "pas2jsdemoextension.helloWorld",
  17. "title": "Pas2js Extension Hello World"
  18. }
  19. ]
  20. },
  21. "scripts": {},
  22. "devDependencies": {
  23. "@types/vscode": "^1.32.0"
  24. }
  25. }