Files
binect-chrome/package.json
tegwick 90a4b7a936 Add release smoke path for pre-store verification (WP-0002)
Introduce npm run smoke with automated build, test, lint, dist, and
metadata-only compliance checks. Document manual Chrome steps in
RELEASE_SMOKE.md and fix unused imports blocking lint.
2026-06-24 15:27:54 +02:00

46 lines
1.2 KiB
JSON

{
"name": "binect-chrome",
"version": "1.0.0",
"description": "Chrome extension to send PDFs from cloud applications directly to Binect for physical mail delivery",
"dependencies": {
"@binect/js": "file:../binect-js"
},
"scripts": {
"build": "webpack --mode production",
"dev": "webpack --mode development --watch",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.{js,ts}",
"lint:fix": "eslint src/**/*.{js,ts} --fix",
"type-check": "tsc --noEmit",
"smoke": "bash scripts/release-smoke.sh"
},
"keywords": [
"chrome-extension",
"pdf",
"binect",
"postal-mail"
],
"author": "Binect",
"license": "MIT",
"devDependencies": {
"@types/chrome": "^0.0.260",
"@types/jest": "^29.5.11",
"@types/node": "^25.0.6",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.9.1",
"eslint": "^8.56.0",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"style-loader": "^3.3.4",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}