passchmop/package.json

26 lines
733 B
JSON

{
"name": "passchmop",
"version": "0.1.0",
"description": "Firefox password manager with a client-side-encrypted git-backed vault",
"private": true,
"type": "module",
"scripts": {
"build": "node esbuild.config.mjs",
"watch": "node esbuild.config.mjs --watch",
"typecheck": "tsc --noEmit",
"run": "web-ext run --source-dir=. --start-url=about:debugging",
"package": "web-ext build --source-dir=. --overwrite-dest"
},
"dependencies": {
"@isomorphic-git/lightning-fs": "^4.6.0",
"buffer": "^6.0.3",
"isomorphic-git": "^1.25.0"
},
"devDependencies": {
"@types/firefox-webext-browser": "^143.0.0",
"esbuild": "^0.25.0",
"typescript": "^6.0.3",
"web-ext": "^8.0.0"
}
}