oranguru/package.json
2025-10-15 10:36:18 +02:00

101 lines
2.8 KiB
JSON

{
"name": "@warkypublic/oranguru",
"author": "Warky Devs",
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint ./src",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"clean": "rm -rf node_modules && rm -rf dist ",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"files": [
"dist/**",
"assets/**",
"public/**",
"global.d.ts"
],
"module": "./src.lib.ts",
"types": "./src/lib.ts",
"publishConfig": {
"main": "./dist/lib.cjs.js",
"module": "./dist/lib.es.js",
"require": "./dist/lib.cjs.js",
"types": "./dist/lib.d.ts",
"typings": "./dist/lib.d.ts",
"exports": {
".": {
"import": "./dist/lib.es.js",
"types": "./dist/lib.d.ts",
"default": "./dist/lib.cjs.js"
},
"./package.json": "./package.json"
}
},
"exports": {
".": {
"types": "./src/lib.ts",
"default": "./src/lib.ts"
}
},
"dependencies": {
"@glideapps/glide-data-grid": "^6.0.3",
"@mantine/notifications": "^8.3.1",
"@tabler/icons-react": "^3.35.0",
"@tanstack/react-query": "^5.89.0",
"immer": "^10.1.3",
"moment": "^2.30.1",
"postcss": "^8.5.6",
"postcss-preset-mantine": "^1.18.0",
"postcss-simple-vars": "^7.0.1"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@eslint/js": "^9.35.0",
"@storybook/react-vite": "^9.1.7",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.4.0",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@typescript-eslint/parser": "^8.43.0",
"@vitejs/plugin-react-swc": "^4.0.1",
"eslint": "^9.35.0",
"eslint-config-mantine": "^4.0.3",
"eslint-plugin-perfectionist": "^4.15.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"eslint-plugin-storybook": "^9.1.7",
"global": "^4.4.0",
"globals": "^16.4.0",
"jsdom": "^27.0.0",
"prettier": "^3.6.2",
"prettier-eslint": "^16.4.2",
"react-dom": "^19.1.1",
"storybook": "^9.1.7",
"typescript": "~5.9.2",
"typescript-eslint": "^8.43.0",
"vite": "^7.1.5",
"vite-plugin-dts": "^4.5.4",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
},
"peerDependencies": {
"@mantine/core": "^8.3.1",
"@mantine/hooks": "^8.3.1",
"@warkypublic/artemis-kit": "^1.0.10",
"@warkypublic/zustandsyncstore": "^0.0.4",
"react": ">= 19.0.0",
"use-sync-external-store": ">= 1.4.0",
"zustand": ">= 5.0.0"
}
}