package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "tranlastion",
  3. "displayName": "tranlastion",
  4. "description": "一个划词及悬浮的翻译插件",
  5. "version": "0.0.1",
  6. "author": "Caner",
  7. "emil": "5658514@qq.com",
  8. "license": "any",
  9. "engines": {
  10. "vscode": "^1.76.0"
  11. },
  12. "categories": [
  13. "Other"
  14. ],
  15. "activationEvents": [
  16. "onStartupFinished"
  17. ],
  18. "main": "./out/extension.js",
  19. "scripts": {
  20. "vscode:prepublish": "yarn run compile",
  21. "compile": "tsc -p ./",
  22. "watch": "tsc -watch -p ./",
  23. "pretest": "yarn run compile && yarn run lint",
  24. "lint": "eslint src --ext ts",
  25. "test": "node ./out/test/runTest.js"
  26. },
  27. "devDependencies": {
  28. "@types/glob": "^8.1.0",
  29. "@types/mocha": "^10.0.1",
  30. "@types/node": "16.x",
  31. "@types/vscode": "^1.76.0",
  32. "@typescript-eslint/eslint-plugin": "^5.53.0",
  33. "@typescript-eslint/parser": "^5.53.0",
  34. "@vscode/test-electron": "^2.2.3",
  35. "eslint": "^8.34.0",
  36. "glob": "^8.1.0",
  37. "mocha": "^10.2.0",
  38. "typescript": "^4.9.5"
  39. },
  40. "dependencies": {
  41. "axios": "^1.3.4",
  42. "crypto-js": "^4.1.1",
  43. "utf8": "^3.0.0"
  44. }
  45. }