@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/)
69 lines (68 loc) • 2.65 kB
JSON
{
"name": "@dbp-toolkit/tooltip",
"homepage": "https://github.com/digital-blueprint/toolkit/tree/main/packages/tooltip",
"version": "0.1.6",
"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/tooltip"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"dbp": {
"urls": [
{
"srcPackage": "tippy.js",
"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",
"rollup-plugin-serve": "^3.0.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@dbp-toolkit/auth": "^0.3.8",
"@dbp-toolkit/common": "^0.3.17",
"lit": "^3.0.0",
"tippy.js": "^6.3.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": "rolldown -c rollup.config.js --watch",
"watch-local": "npm run watch",
"watch-dev": "rolldown -c rollup.config.js --watch --environment BUILD:development",
"test": "rolldown -c rollup.config.js --environment BUILD:test && web-test-runner",
"tsc": "tsc -p jsconfig.json"
}
}