Files
dao/packages/ui/package.json
T

89 lines
2.4 KiB
JSON

{
"name": "@luxdao/ui",
"version": "0.1.0",
"description": "Lux DAO UI Component Library",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"type-check": "tsc --noEmit",
"lint": "eslint .",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"docs:api": "typedoc --out docs/api src/index.ts",
"docs:serve": "pnpm build-storybook && serve storybook-static"
},
"peerDependencies": {
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"dependencies": {
"@chakra-ui/anatomy": "^2.2.2",
"@phosphor-icons/react": "^2.1.4",
"framer-motion": "^6.5.1"
},
"devDependencies": {
"@storybook/addon-a11y": "^7.6.0",
"@storybook/addon-essentials": "^7.6.0",
"@storybook/addon-links": "^7.6.0",
"@storybook/addon-themes": "^7.6.0",
"@storybook/blocks": "^7.6.0",
"@storybook/react": "^7.6.0",
"@storybook/react-vite": "^7.6.0",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitejs/plugin-react": "^4.2.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdom": "^23.0.0",
"storybook": "^7.6.0",
"tsup": "^8.0.0",
"typedoc": "^0.25.0",
"typescript": "^5.3.0",
"vite": "^5.0.0",
"vitest": "^1.0.0"
},
"tsup": {
"entry": ["src/index.ts"],
"format": ["cjs", "esm"],
"dts": true,
"sourcemap": true,
"clean": true,
"external": ["react", "react-dom", "@chakra-ui/react", "@emotion/react", "@emotion/styled"]
},
"repository": {
"type": "git",
"url": "git+https://github.com/luxdao/dao.git"
},
"keywords": [
"lux",
"dao",
"ui",
"components",
"react",
"chakra-ui"
],
"author": "Lux DAO Contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/luxdao/dao/issues"
},
"homepage": "https://github.com/luxdao/dao/tree/main/packages/ui#readme"
}