-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
84 lines (84 loc) · 1.94 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
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
{
"name": "spoiled",
"description": "Realistic animated <Spoiler /> component for React",
"version": "0.3.3",
"type": "module",
"license": "Unlicense",
"main": "esm/index.js",
"exports": {
".": {
"types": "./esm/index.d.ts",
"default": "./esm/index.js"
},
"./no-css": {
"types": "./esm/index_unstyled.d.ts",
"default": "./esm/index_unstyled.js"
},
"./style.css": "./esm/style.css"
},
"typesVersions": {
"*": {
".": [
"esm/index.d.ts"
],
"no-css": [
"esm/index_unstyled.d.ts"
]
}
},
"types": "esm/index.d.ts",
"files": [
"esm",
"src",
"README.md"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"bundle": "BUNDLE_LIBRARY=1 vite build",
"preview": "vite preview",
"test": "vitest",
"prepublishOnly": "tsc && npm run bundle"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.12",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^20.11.20",
"@types/react": "^18.2.57",
"@types/react-dom": "^18.2.19",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"gif.js": "^0.2.0",
"happy-dom": "^15.11.7",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-github-btn": "^1.4.0",
"rollup-preserve-directives": "^1.1.1",
"sugar-high": "^0.6.0",
"tailwindcss": "^3.4.3",
"typescript": "^5.3.3",
"vite": "^5.0.8",
"vite-plugin-dts": "^4.3.0",
"vitest": "^1.3.1"
},
"dependencies": {
"colord": "^2.9.3"
},
"postcss": {
"plugins": {
"tailwindcss": {
"config": "./web/tailwind.config.js"
},
"autoprefixer": {}
}
}
}