-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.32 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "react-hook-roulette",
"version": "0.0.10",
"description": "Minimal roulette wheel component. built with React Hooks.",
"homepage": "https://github.com/camiha/React-Hook-Roulette",
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"typings": "./dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"package.json",
"README.md"
],
"scripts": {
"watch": "vitest",
"coverage": "vitest run --coverage",
"lint": "biome lint ./src",
"check": "biome check ./src",
"check:apply": "biome check:apply ./src",
"check:ci": "biome ci ./src",
"test": "biome ci ./src && vitest run",
"test:ci": "vitest run",
"build": "unbuild",
"prepare": "husky install"
},
"keywords": [
"react",
"react-hooks",
"roulette",
"wheel"
],
"author": "Takumi Kamihara (camiha)",
"license": "MIT",
"dependencies": {
"react": "^18"
},
"devDependencies": {
"@biomejs/biome": "^1.4.1",
"@vitest/coverage-v8": "^1.0.1",
"husky": "^8.0.3",
"typescript": "^5.3.2",
"unbuild": "^2.0.0",
"vite": "^5.0.6",
"vitest": "^1.0.1"
},
"peerDependencies": {
"@types/react": "^18",
"@types/react-dom": "^18"
},
"packageManager": "[email protected]"
}