UNPKG

honeycomb-element

Version:

Webcomponent honeycomb-element following open-wc recommendations

105 lines (104 loc) 2.86 kB
{ "name": "honeycomb-element", "version": "1.4.0", "description": "Webcomponent honeycomb-element following open-wc recommendations", "author": "honeycomb-element", "license": "MIT", "type": "module", "main": "build/honeycomb-element.bundled.js", "module": "build/honeycomb-element.bundled.js", "types": "dist/index.d.ts", "customElements": "./custom-elements.json", "scripts": { "start": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds\"", "build": "tsc", "build:prod": "rollup -c", "build:docs": "typedoc src/HoneycombElement.ts", "prepublish": "tsc", "publish": "npm run build:prod && git push --follow-tags origin main && npm publish", "lint": "eslint --ext .ts,.html . --ignore-path .gitignore && prettier \"**/*.ts\" --check --ignore-path .gitignore", "format": "eslint --ext .ts,.html . --fix --ignore-path .gitignore && prettier \"**/*.ts\" --write --ignore-path .gitignore", "version": "npx standard-version" }, "dependencies": { "lit-html": "^1.4.1", "lit-element": "^2.5.1" }, "devDependencies": { "@open-wc/eslint-config": "^4.3.0", "@rollup/plugin-node-resolve": "^13.0.4", "@rollup/plugin-replace": "^3.0.0", "@typescript-eslint/eslint-plugin": "^4.25.0", "@typescript-eslint/parser": "^4.25.0", "@web/dev-server": "^0.1.17", "concurrently": "^5.3.0", "eslint": "^7.27.0", "eslint-config-prettier": "^7.2.0", "husky": "^4.3.8", "lint-staged": "^10.5.4", "prettier": "^2.2.1", "rollup": "^2.56.3", "rollup-plugin-summary": "^1.3.0", "rollup-plugin-terser": "^7.0.2", "tslib": "^2.2.0", "typedoc": "^0.22.3", "typescript": "^4.3.2" }, "eslintConfig": { "parser": "@typescript-eslint/parser", "extends": [ "@open-wc/eslint-config", "eslint-config-prettier" ], "plugins": [ "@typescript-eslint" ], "ignorePatterns": [ "build" ], "rules": { "no-unused-vars": "off", "@typescript-eslint/no-unused-vars": [ "error" ], "import/no-unresolved": "off", "import/extensions": [ "error", "always", { "ignorePackages": true } ] } }, "prettier": { "singleQuote": true, "arrowParens": "avoid" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.ts": [ "eslint --fix", "prettier --write" ] }, "repository": { "type": "git", "url": "git+https://github.com/lukaskoeller/honeycomb-element.git" }, "keywords": [ "web", "components", "hierarchy", "honeycomb", "hexagon" ], "bugs": { "url": "https://github.com/lukaskoeller/honeycomb-element/issues" }, "homepage": "https://github.com/lukaskoeller/honeycomb-element#readme" }