- 创建 src/shared/messaging.js 通信工具类 - 实现 MessageClient.sendToBackground() 方法 - 实现 BackgroundHandler.sendToContent() 方法 - 提供 ping/pong 测试验证通信链路 - 修复异步响应处理机制
39 lines
793 B
JSON
39 lines
793 B
JSON
{
|
|
"name": "salad-dict",
|
|
"version": "0.0.4",
|
|
"description": "聚合词典划词翻译",
|
|
"private": true,
|
|
"type": "module",
|
|
"packageManager": "pnpm@9.1.2",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"lint": "eslint . --ext .js,.vue"
|
|
},
|
|
"dependencies": {
|
|
"vue": "^3.4.0",
|
|
"vue-router": "^4.2.0",
|
|
"pinia": "^2.1.0",
|
|
"localforage": "^1.10.0"
|
|
},
|
|
"devDependencies": {
|
|
"@crxjs/vite-plugin": "^2.0.0",
|
|
"@vitejs/plugin-vue": "^5.0.0",
|
|
"vite": "^5.0.0",
|
|
"eslint": "^8.56.0",
|
|
"eslint-plugin-vue": "^9.19.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0",
|
|
"pnpm": ">=9.0.0"
|
|
},
|
|
"keywords": [
|
|
"chrome-extension",
|
|
"dictionary",
|
|
"translation"
|
|
],
|
|
"author": "",
|
|
"license": "MIT"
|
|
}
|