Org GUI (read+write) + pluggable second factor feature-complete (all 5 streams
merged at 6d6e9f8). Versions: extension manifests + core/cli/wasm -> 0.9.0
(manifest.firefox.json 0.7.0-drift corrected); relicario-server stays 0.1.1.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_013Hc6Rvdz3DxLucqNtPE2iP
30 lines
927 B
JSON
30 lines
927 B
JSON
{
|
|
"name": "relicario-extension",
|
|
"version": "0.9.0",
|
|
"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": {
|
|
"isomorphic-git": "^1.38.5",
|
|
"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"
|
|
}
|
|
}
|