onboarder
Version:
Un package React simple et puissant pour créer des expériences d'onboarding interactives
63 lines • 1.68 kB
JSON
{
"name": "onboarder",
"version": "0.0.50",
"description": "Un package React simple et puissant pour créer des expériences d'onboarding interactives",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/lucasporrini/onboarder.git"
},
"keywords": [
"react",
"onboarding",
"tutorial",
"guide",
"tour",
"user-onboarding",
"product-tour",
"walkthrough"
],
"author": "Lucas Porrini",
"license": "MIT",
"type": "module",
"bugs": {
"url": "https://github.com/lucasporrini/onboarder/issues"
},
"homepage": "https://github.com/lucasporrini/onboarder#readme",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.13.10",
"@types/react": "^19.0.12",
"@typescript-eslint/eslint-plugin": "^8.27.0",
"@typescript-eslint/parser": "^8.27.0",
"eslint": "^9.22.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
"@repo/eslint-config": "0.0.0"
},
"dependencies": {
"@radix-ui/react-context": "^1.1.1",
"@radix-ui/react-slot": "^1.1.2",
"react": ">=16.8.0"
},
"scripts": {
"lint": "eslint . --max-warnings 0",
"test": "jest",
"test:watch": "jest --watch",
"build": "tsup",
"dev": "tsup --watch",
"pub:release": "pnpm publish --no-git-checks --access public",
"clean": "rm -rf dist",
"release": "pnpm run clean && pnpm build && pnpm publish"
}
}