@frontend-kasplo/kasplo-ui-components
Version:
UI Components Library
125 lines (124 loc) • 3.86 kB
JSON
{
"name": "@frontend-kasplo/kasplo-ui-components",
"version": "1.0.3",
"description": "UI Components Library",
"keywords": [
"Storybook",
"Rollup",
"ReactJs",
"Typescript",
"UI Components"
],
"license": "ISC",
"author": "Ashish s Jadhav",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/Kasplo-dev/kasplo-ui-components.git"
},
"scripts": {
"start": "npm run storybook",
"dev:lib": "npm run dev",
"dev:all": "concurrently \"npm run dev\" \"npm run storybook\"",
"test": "jest --config jest.config.cjs",
"test:watch": "jest --config jest.config.cjs --watch",
"test:coverage": "jest --config jest.config.cjs --coverage",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build": "rollup -c",
"dev": "rollup -c rollup.config.cjs -w",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"prepare": "npm run build",
"format": "prettier --write \"src/**/*.{ts,tsx,json,md}\"",
"analyze": "rollup -c --analyze",
"type-check": "tsc --noEmit",
"precommit": "node scripts/pre-commit-check.js",
"lint-staged": "lint-staged"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.23.0",
"@babel/preset-react": "^7.23.0",
"@babel/preset-typescript": "^7.23.0",
"@chromatic-com/storybook": "^3.2.5",
"@jest/globals": "^29.7.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@storybook/addon-a11y": "^8.0.0",
"@storybook/addon-coverage": "^1.0.0",
"@storybook/addon-essentials": "^8.0.0",
"@storybook/addon-interactions": "^8.0.0",
"@storybook/addon-links": "^8.0.0",
"@storybook/addon-onboarding": "^8.0.0",
"@storybook/blocks": "^8.0.0",
"@storybook/react": "^8.0.0",
"@storybook/react-vite": "^8.0.0",
"@storybook/test": "^8.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.1.0",
"@testing-library/user-event": "^14.5.0",
"@types/jest": "^29.5.14",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"autoprefixer": "^10.4.17",
"chalk": "^4.1.2",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.15",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.0.0",
"postcss": "^8.5.3",
"prettier": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.12",
"rollup": "^4.0.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-visualizer": "^5.14.0",
"storybook": "^8.0.0",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.1.1",
"tslib": "^2.8.1",
"typescript": "^5.3.3"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix --ignore-pattern '!**/.storybook/preview.ts'",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md"
]
}