@furo/layout
Version:
Layout components for furo
69 lines (68 loc) • 2.56 kB
JSON
{
"name": "@furo/layout",
"description": "Layout components for furo",
"version": "3.0.0-RC.2",
"homepage": "https://github.com/eclipse/eclipsefuro-web/tree/main/packages/furo-layout",
"repository": "git@github.com:eclipse/eclipsefuro-web.git",
"author": {
"name": "",
"email": "",
"url": ""
},
"keywords": [
"web-components",
"flow based programming",
"fbp"
],
"license": "MIT",
"main": "dist/index.js",
"type": "module",
"exports": {
"./src/*": "./src/*",
"./dist/*": "./dist/*",
"./package.json": "./package.json",
"./custom-elements.json": "./custom-elements.json",
"./web-types.json": "./web-types.json",
"./jsx/*": "./dist/intrinsicElements/*",
"./*": "./dist/*"
},
"files": [
"./dist",
"icon.svg",
"README.md",
"custom-elements.json",
"web-types.json"
],
"scripts": {
"start": "tsc && concurrently -k -r 'vite dev' 'tsc --watch'",
"test": "vitest run --coverage",
"test:debug": "vitest run --inspect-brk --no-file-parallelism --isolate false",
"test:watch": "vitest watch",
"test:ui": "vitest --ui",
"build": "rimraf dist && npm run analyze && npm run analyze:internal && npm run analyze:deep && npm run gen:intrinsic && tsc && tsc-alias",
"gen:intrinsic": "node ../../scripts/IntrinsicElements/main.js @furo/layout && eslint --version && eslint --fix --ext .ts src/JSX && prettier src/JSX/*.ts --write",
"lint": "eslint --ext .ts,.html ./src --ignore-path .gitignore",
"lint:fix": "eslint --ext .ts,.html ./src --fix --ignore-path .gitignore",
"lint:fix:tests": "eslint --ext .ts,.html ./test --fix --ignore-path .gitignore",
"format": "prettier './src/**/*.ts' --write --ignore-path .gitignore",
"format:tests": "prettier './test/**/*.ts' --write --ignore-path .gitignore",
"analyze": "cem analyze --litelement --globs ./src/* --outdir ./dist",
"analyze:internal": "cem analyze --config scripts/internal-cem.config.mjs && mv tmp/custom-elements.json dist/custom-elements-internal.json",
"analyze:deep": "cem analyze --config ./scripts/deep-cem.config.mjs && ./scripts/WebtypesPostprocessor.mjs && ./scripts/CheckWebtypes.mjs",
"prepare": "husky install"
},
"dependencies": {
"@furo/fbp": "^6.15.0",
"lit": "^3.2.1"
},
"publishConfig": {
"access": "public"
},
"customElements": "custom-elements.json",
"web-types": "./web-types.json",
"engines": {
"node": ">=21.7.3",
"npm": ">=10.2.5"
},
"gitHead": "b8ff9b3ddc4cc691d89607771feed0ac7e168c4b"
}