react-skeleton-builder
Version:
A versatile React component library for creating customizable skeleton loading animations with Chakra UI and TypeScript.
102 lines (101 loc) • 2.42 kB
JSON
{
"name": "react-skeleton-builder",
"version": "0.6.3",
"private": false,
"author": "ASahak",
"description": "A versatile React component library for creating customizable skeleton loading animations with Chakra UI and TypeScript.",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"scripts": {
"dev": "vite",
"build": "npm run clean && tsc && rollup -c",
"clean": "rimraf dist",
"start": "vite preview",
"lint": "next lint",
"pre-commit": "lint-staged",
"pre-push": "npm run build && npm publish",
"prepare": "husky",
"lint:fix": "eslint ./src --fix --quiet",
"prettier:fix": "prettier --write ./**/*.{js,jsx,ts,tsx,css,json} --config ./.prettierrc"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"npm run lint:fix",
"npm run prettier:fix"
]
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"files": [
"/dist"
],
"homepage": "https://skeleton-generator.vercel.app/",
"repository": {
"type": "git",
"url": "https://github.com/ASahak/react-skeleton"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"style-to-object": "^1.0.6",
"react-use": "^17.5.0"
},
"devDependencies": {
"@monaco-editor/react": "^4.6.0",
"@rollup/plugin-typescript": "^11.1.0",
"@types/node": "^20.14.9",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"@vitejs/plugin-react": "^4.2.1",
"@vitejs/plugin-react-swc": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.3.1",
"rimraf": "^5.0.0",
"rollup": "^3.29.5",
"typescript": "^5",
"vite": "^5.3.1",
"vite-plugin-checker": "^0.5.6",
"vitest": "^0.30.1"
},
"license": "MIT",
"keywords": [
"react",
"react-skeleton",
"react-loading",
"react-loader",
"skeleton",
"loading",
"builder",
"loader",
"animation",
"skeleton-builder",
"custom-skeleton",
"skeleton-ui",
"ui"
],
"peerDependencies": {
"react": ">=16.0.0"
},
"engines": {
"node": ">=10"
}
}