@ludiks/react
Version:
Complete React library for Ludiks gamification platform - includes SDK and ready-to-use components
63 lines • 1.4 kB
JSON
{
"name": "@ludiks/react",
"version": "0.1.3",
"description": "Complete React library for Ludiks gamification platform - includes SDK and ready-to-use components",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc && tsc-alias",
"dev": "tsc --watch",
"prepublishOnly": "npm run build",
"test": "jest",
"dev:demo": "vite",
"build:demo": "vite build",
"preview:demo": "vite preview"
},
"keywords": [
"react",
"components",
"gamification",
"ludiks",
"sdk",
"ui",
"leaderboard",
"streak",
"profile"
],
"author": "Olivier Maréchal",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ludiks-org/ludiks.react.git"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"dependencies": {
"@ludiks/sdk": "^0.1.8",
"clsx": "^2.1.1"
},
"devDependencies": {
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^4.2.1",
"typescript": "^5.0.0",
"tsc-alias": "^1.8.8",
"vite": "^5.1.4"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./components/*": {
"import": "./dist/components/*",
"require": "./dist/components/*"
}
}
}