package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "stdf-vscode-extension",
  3. "displayName": "STDF for VS Code",
  4. "description": "A VS Code extension to facilitate STDF development",
  5. "version": "0.0.27",
  6. "publisher": "STDF",
  7. "icon": "./src/assets/stdf-vscode-extension.png",
  8. "main": "./src/extension.js",
  9. "engines": {
  10. "vscode": "^1.27.0"
  11. },
  12. "scripts": {
  13. "files": "node scripts/files.js",
  14. "package": "vsce package",
  15. "publish": "vsce publish"
  16. },
  17. "categories": [
  18. "Programming Languages"
  19. ],
  20. "activationEvents": [
  21. "onLanguage:svelte"
  22. ],
  23. "sponsor": {
  24. "url": "https://stdf.design?fund"
  25. },
  26. "keywords": [
  27. "svelte",
  28. "stdf",
  29. "component",
  30. "api",
  31. "javascript"
  32. ],
  33. "contributes": {
  34. "commands": [],
  35. "configuration": {
  36. "type": "object",
  37. "title": "STDF",
  38. "properties": {
  39. "STDF.English": {
  40. "type": "boolean",
  41. "default": false,
  42. "description": "Whether to enable English or not in stdf-vscode-extension"
  43. }
  44. }
  45. }
  46. },
  47. "devDependencies": {
  48. "vscode": "^1.1.37"
  49. },
  50. "repository": {
  51. "type": "git",
  52. "url": "https://github.com/any-tdf/stdf/tree/main/packages/vscode-extension"
  53. },
  54. "bugs": {
  55. "url": "https://github.com/any-tdf/stdf/issues?q=is:issue+is:open+vscode"
  56. },
  57. "homepage": "https://github.com/any-tdf/stdf/tree/main/packages/vscode-extension/README.md",
  58. "LICENSE": "https://github.com/any-tdf/stdf/blob/main/LICENSE"
  59. }