package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "real-gold",
  3. "displayName": "realGold",
  4. "description": "一个在状态栏显示黄金实时价格的插件",
  5. "version": "0.0.6",
  6. "publisher": "Caner",
  7. "author": "Caner",
  8. "emil": "5658514@qq.com",
  9. "license": "MIT",
  10. "repository": "https://git.caner.top/Caner/vscode-gold.git",
  11. "icon": "images/icon.png",
  12. "engines": {
  13. "vscode": "^1.76.0"
  14. },
  15. "categories": [
  16. "Other"
  17. ],
  18. "activationEvents": [
  19. "onStartupFinished"
  20. ],
  21. "main": "./out/extension.js",
  22. "scripts": {
  23. "vscode:prepublish": "yarn run compile",
  24. "compile": "tsc -p ./",
  25. "watch": "tsc -watch -p ./",
  26. "pretest": "yarn run compile && yarn run lint",
  27. "lint": "eslint src --ext ts",
  28. "test": "node ./out/test/runTest.js",
  29. "build": "vsce package --no-yarn"
  30. },
  31. "devDependencies": {
  32. "@types/glob": "^8.1.0",
  33. "@types/mocha": "^10.0.1",
  34. "@types/node": "16.x",
  35. "@types/vscode": "^1.76.0",
  36. "@typescript-eslint/eslint-plugin": "^5.53.0",
  37. "@typescript-eslint/parser": "^5.53.0",
  38. "@vscode/test-electron": "^2.2.3",
  39. "eslint": "^8.34.0",
  40. "glob": "^8.1.0",
  41. "mocha": "^10.2.0",
  42. "typescript": "^4.9.5"
  43. },
  44. "dependencies": {
  45. "axios": "^1.8.4"
  46. }
  47. }