forked from dave-b-b/react-achievements-zustand
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.11 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.11 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "react-trophies",
"version": "2.2.1",
"description": "Comprehensive achievement and trophy system for React apps with sound effects, notifications, theming, and visual components. Uses React, React-DOM, Sonner (toast notifications), Howler (sound effects), Zustand (state management), React-Confetti (celebrations), and React-Use (utility hooks).",
"repository": {
"type": "git",
"url": "https://github.com/ts2gamer22/react-trophies"
},
"keywords": [
"react",
"badge",
"achievement",
"trophy",
"sonner",
"howler",
"zustand",
"react-confetti",
"react-use",
"game",
"gamification",
"tailwind",
"shadcn",
"notifications",
"progress"
],
"main": "dist/cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/cjs.js",
"types": "./dist/index.d.ts"
}
},
"sideEffects": false,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c",
"deploy": "npm run build && npm publish",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"author": "ts2gamer22",
"license": "MIT",
"devDependencies": {
"@chromatic-com/storybook": "^1.6.1",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^6.0.2",
"@storybook/addon-essentials": "^8.6.8",
"@storybook/addon-interactions": "^8.6.8",
"@storybook/addon-links": "^8.6.8",
"@storybook/addon-onboarding": "^8.6.8",
"@storybook/addon-webpack5-compiler-swc": "^1.0.5",
"@storybook/blocks": "^8.6.8",
"@storybook/react": "^8.6.8",
"@storybook/react-webpack5": "^8.6.8",
"@storybook/test": "^8.6.8",
"@types/howler": "^2.2.12",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.21",
"lucide-react": "^0.417.0",
"postcss": "^8.5.6",
"rollup": "^4.19.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"storybook": "^8.6.8",
"tailwindcss": "^4.1.11",
"typescript": "^5.5.4"
},
"peerDependencies": {
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-scroll-area": "^1.2.9",
"howler": "^2.2.4",
"react": "^18.0.0 || ^19.0.0-rc.0",
"react-confetti": "^6.0.0",
"react-dom": "^18.0.0 || ^19.0.0-rc.0",
"react-use": "^17.0.0",
"sonner": "^1.4.41 || ^2.0.0",
"zustand": "^4.0.0 || ^5.0.0"
},
"peerDependenciesMeta": {
"@radix-ui/react-dialog": {
"optional": true
},
"@radix-ui/react-progress": {
"optional": true
},
"@radix-ui/react-scroll-area": {
"optional": true
},
"lucide-react": {
"optional": true
}
},
"dependencies": {
"@radix-ui/react-tabs": "^1.1.12",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"tailwind-merge": "^3.3.1",
"tw-animate-css": "^1.3.4"
}
}