@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/)
71 lines (70 loc) • 2.74 kB
JSON
{
"name": "@dbp-toolkit/form-elements",
"homepage": "https://github.com/digital-blueprint/toolkit/tree/main/packages/form-elements",
"version": "0.2.17",
"type": "module",
"description": "Form elements for the Digital Blueprint Toolkit",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/digital-blueprint/toolkit.git",
"directory": "packages/form-elements"
},
"license": "LGPL-2.1-or-later",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"dbp": {
"urls": [
{
"srcPackage": "select2",
"src": "**/*.css"
}
]
},
"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",
"rolldown": "^1.0.0-beta.49",
"rollup-plugin-serve": "^3.0.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@dbp-toolkit/common": "^0.3.17",
"jquery": "^3.5.1",
"lit": "^3.0.0",
"select2": "^4.0.10"
},
"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"
}
}