wheel-fortune
Version:
A lightweight, customizable spinning wheel component for web games and raffles
84 lines (83 loc) • 2.02 kB
JSON
{
"name": "wheel-fortune",
"version": "4.1.0",
"description": "A lightweight, customizable spinning wheel component for web games and raffles",
"author": "ux-ui.pro",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ux-ui-pro/wheel-fortune.git"
},
"bugs": {
"url": "https://github.com/ux-ui-pro/wheel-fortune/issues"
},
"homepage": "https://github.com/ux-ui-pro/wheel-fortune",
"sideEffects": false,
"type": "module",
"packageManager": "yarn@1.22.22",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"clean": "rimraf dist",
"build": "vite build",
"dev": "vite",
"verify": "yarn build && yarn lint && yarn typecheck && yarn test:smoke",
"lint": "biome check src",
"lint:fix": "biome check --write src",
"format": "biome format --write src",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test:smoke": "node --test tests/*.js",
"prepublishOnly": "yarn clean && yarn verify"
},
"source": "src/index.ts",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs.js",
"import": "./dist/index.es.js"
},
"./dist/*": "./dist/*"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"devDependencies": {
"@biomejs/biome": "2.4.8",
"@types/node": "25.5.0",
"esbuild": "0.27.4",
"rimraf": "6.1.3",
"typescript": "5.9.3",
"vite": "8.0.1",
"vite-plugin-dts": "4.5.4"
},
"keywords": [
"wheel",
"spin",
"roulette",
"wheel-spinner",
"fortune-wheel",
"spinning-wheel",
"lucky-wheel",
"prize",
"game",
"gamification",
"animation",
"ui",
"ux",
"interactive",
"component",
"typescript",
"javascript",
"html",
"css",
"web",
"front-end",
"dom"
]
}