Extension-only patch: fixes vault create/attach in the browser extension, where chrome.runtime.sendMessage silently dropped ArrayBuffer payloads (carrier JPEG → 0 bytes → opaque "no SOF marker found in JPEG"). See CHANGELOG for the full set. - Version bumps: extension 0.7.0→0.8.2 (it had no changes in 0.8.0/0.8.1); relicario-core/-cli/-wasm 0.8.1→0.8.2 for unified-tag consistency. The Rust core/CLI are functionally unchanged from v0.8.1. relicario-server stays 0.1.1 (independent version line; no functional change). - CHANGELOG.md: v0.8.2 section. STATUS.md / ROADMAP.md: v0.8.2 landed, v0.9.0 flagged as ready to kick off. Verify: cargo build/test/clippy -D warnings all green (35 test binaries); extension 435/435 vitest, build:all clean. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Pe8qw5KePDqAEBsAxnVQuJ
29 lines
894 B
JSON
29 lines
894 B
JSON
{
|
|
"name": "relicario-extension",
|
|
"version": "0.8.2",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "webpack --mode production",
|
|
"build:firefox": "webpack --config webpack.firefox.config.js --mode production",
|
|
"build:all": "npm run build:wasm && npm run build && npm run build:firefox",
|
|
"dev": "webpack --mode development --watch",
|
|
"dev:firefox": "webpack --config webpack.firefox.config.js --mode development --watch",
|
|
"build:wasm": "wasm-pack build ../crates/relicario-wasm --target web --out-dir ../../extension/wasm",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
},
|
|
"dependencies": {
|
|
"jsqr": "^1.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chrome": "^0.1.40",
|
|
"copy-webpack-plugin": "^12.0",
|
|
"happy-dom": "^15",
|
|
"ts-loader": "^9.5",
|
|
"typescript": "^5.4",
|
|
"vitest": "^2.0",
|
|
"webpack": "^5.90",
|
|
"webpack-cli": "^5.1"
|
|
}
|
|
}
|