@furo/layout
Version:
Layout components for furo
66 lines (65 loc) • 1.82 kB
JSON
{
"name": "@furo/layout",
"description": "Layout components for furo",
"version": "2.3.1",
"homepage": "https://github.com/eclipse/eclipsefuro-web/tree/main/packages/furo-layout",
"repository": "git@github.com:eclipse/eclipsefuro-web.git",
"web-types": "web-types.json",
"author": {
"name": "",
"email": "",
"url": ""
},
"keywords": [
"web-components",
"flow based programming",
"flowbased",
"flow"
],
"license": "MIT",
"main": "src/furo-catalog.js",
"scripts": {
"build": "tsc",
"clean": "rm -rf ./dist ",
"analyze": "../../node_modules/.bin/cem analyze --globs \"dist/**/*.js\" --exclude **/furo-catalog.js --litelement",
"start": "../../node_modules/.bin/web-dev-server --app-index demos/index.html --open",
"lint": "../../node_modules/.bin/eslint --ext .js,.html . --ignore-path .gitignore && prettier \"**/*.js\" --check --ignore-path .gitignore",
"format": "../../node_modules/.bin/eslint --ext .js,.html . --fix --ignore-path .gitignore && prettier \"**/*.js\" --write --ignore-path .gitignore",
"test": "../../node_modules/.bin/web-test-runner --coverage",
"test:watch": "../../node_modules/.bin/web-test-runner --watch"
},
"dependencies": {
"@furo/fbp": "^6.14.0",
"lit": "^3.2.1"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=10.0"
},
"customElements": "custom-elements.json",
"eslintConfig": {
"extends": [
"@open-wc",
"prettier"
]
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"gitHead": "27c07a7e24ea45b01e7f65c82f5be2d675ea9ef4"
}