package.json 1.1 KB

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