@digital-blueprint/lunchlottery-app
Version:
[GitHub Repository](https://github.com/digital-blueprint/lunchlottery-app) | [npmjs package](https://www.npmjs.com/package/@digital-blueprint/lunchlottery-app) | [Unpkg CDN](https://unpkg.com/browse/@digital-blueprint/lunchlottery-app/)
61 lines (60 loc) • 2.49 kB
JSON
{
"name": "@dbp-toolkit/qr-code-scanner",
"homepage": "https://github.com/digital-blueprint/toolkit/tree/main/packages/qr-code-scanner",
"version": "0.3.8",
"type": "module",
"main": "src/index.js",
"license": "LGPL-2.1-or-later",
"repository": {
"type": "git",
"url": "https://github.com/digital-blueprint/toolkit.git",
"directory": "packages/qr-code-scanner"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"devDependencies": {
"@web/test-runner": "^0.20.2",
"@web/test-runner-playwright": "^0.11.1",
"chai": "^6.0.0",
"eslint": "^9.1.0",
"eslint-plugin-jsdoc": "^62.0.0",
"globals": "^17.0.0",
"i18next-cli": "^1.7.1",
"mocha": "^11.0.0",
"playwright": "^1.34.0",
"playwright-core": "^1.20.2",
"prettier": "^3.0.0",
"rollup-plugin-serve": "^3.0.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@dbp-toolkit/common": "^0.3.17",
"async-mutex": "^0.5.0",
"lit": "^3.0.0",
"qr-scanner": "^1.4.1"
},
"scripts": {
"clean": "rm dist/*",
"fix": "npm run eslint:fix && npm run prettier:fix && npm run i18next:fix",
"check": "npm run eslint && npm run prettier && npm run i18next",
"eslint:fix": "eslint \"**/*.{js,ts}\" --fix --cache",
"eslint": "eslint \"**/*.{js,ts}\" --cache",
"prettier:fix": "prettier \"**/*.{js,json,ts,md,yaml,yml}\" --write --cache",
"prettier": "prettier \"**/*.{js,json,ts,md,yaml,yml}\" --check --cache",
"build": "rolldown -c rollup.config.js",
"build-local": "rolldown -c rollup.config.js",
"build-dev": "rolldown -c rollup.config.js --environment BUILD:development",
"build-prod": "rolldown -c rollup.config.js --environment BUILD:production",
"build-demo": "rolldown -c rollup.config.js --environment BUILD:demo",
"build-test": "rolldown -c rollup.config.js --environment BUILD:test",
"i18next:fix": "i18next-cli extract",
"i18next": "i18next-cli extract --ci --dry-run",
"watch": "npm run watch-local",
"watch-local": "rolldown -c rollup.config.js --watch",
"watch-dev": "rolldown -c rollup.config.js --watch --environment BUILD:development",
"test": "npm run build-test && web-test-runner",
"tsc": "tsc -p jsconfig.json"
}
}