## Changes: - @portaljs/components version bumped from 0.0.3 to 0.1.0 - New version adds the Catalog component
87 lines
2.4 KiB
JSON
87 lines
2.4 KiB
JSON
{
|
|
"name": "@portaljs/components",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"description": "https://portaljs.org",
|
|
"keywords": [
|
|
"data portal",
|
|
"data catalog",
|
|
"table",
|
|
"charts",
|
|
"visualization"
|
|
],
|
|
"scripts": {
|
|
"dev": "npm run storybook",
|
|
"build": "tsc && vite build && npm run build-tailwind",
|
|
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
"prepack": "json -f package.json -I -e \"delete this.devDependencies; delete this.dependencies\"",
|
|
"storybook": "storybook dev -p 6006",
|
|
"build-storybook": "storybook build",
|
|
"build-tailwind": "NODE_ENV=production npx tailwindcss -o ./dist/styles.css --minify"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0"
|
|
},
|
|
"dependencies": {
|
|
"@heroicons/react": "^2.0.17",
|
|
"@tanstack/react-table": "^8.8.5",
|
|
"@types/flexsearch": "^0.7.3",
|
|
"flexsearch": "0.7.21",
|
|
"next-mdx-remote": "^4.4.1",
|
|
"papaparse": "^5.4.1",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-hook-form": "^7.43.9",
|
|
"react-vega": "^7.6.0",
|
|
"vega": "5.20.2",
|
|
"vega-lite": "5.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@storybook/addon-essentials": "^7.0.7",
|
|
"@storybook/addon-interactions": "^7.0.7",
|
|
"@storybook/addon-links": "^7.0.7",
|
|
"@storybook/blocks": "^7.0.7",
|
|
"@storybook/react": "^7.0.7",
|
|
"@storybook/react-vite": "^7.0.7",
|
|
"@storybook/testing-library": "^0.0.14-next.2",
|
|
"@types/papaparse": "^5.3.7",
|
|
"@types/react": "^18.0.28",
|
|
"@types/react-dom": "^18.0.11",
|
|
"@typescript-eslint/eslint-plugin": "^5.57.1",
|
|
"@typescript-eslint/parser": "^5.57.1",
|
|
"@vitejs/plugin-react": "^4.0.0",
|
|
"autoprefixer": "^10.4.14",
|
|
"eslint": "^8.38.0",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"eslint-plugin-react-refresh": "^0.3.4",
|
|
"eslint-plugin-storybook": "^0.6.11",
|
|
"json": "^11.0.0",
|
|
"postcss": "^8.4.23",
|
|
"prop-types": "^15.8.1",
|
|
"storybook": "^7.0.7",
|
|
"tailwindcss": "^3.3.2",
|
|
"typescript": "^5.0.2",
|
|
"vite": "^4.3.2",
|
|
"vite-plugin-dts": "^2.3.0"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"main": "./dist/components.umd.js",
|
|
"module": "./dist/components.es.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/components.es.js",
|
|
"require": "./dist/components.umd.js"
|
|
},
|
|
"./styles.css": {
|
|
"import": "./dist/styles.css"
|
|
}
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|