kotsa-spot-game-widget 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +144 -0
- package/dist/kotsa-spot-the-difference.js +12 -0
- package/package.json +46 -0
package/package.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "kotsa-spot-game-widget",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "한국교통안전공단 교통안전 틀린그림찾기 — <script> 한 줄로 임베드하는 게임 위젯",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist"
|
|
8
|
+
],
|
|
9
|
+
"unpkg": "dist/kotsa-spot-the-difference.js",
|
|
10
|
+
"jsdelivr": "dist/kotsa-spot-the-difference.js",
|
|
11
|
+
"scripts": {
|
|
12
|
+
"dev": "vite",
|
|
13
|
+
"build": "tsc -b && vite build",
|
|
14
|
+
"lint": "eslint .",
|
|
15
|
+
"preview": "vite preview",
|
|
16
|
+
"prepublishOnly": "npm run build"
|
|
17
|
+
},
|
|
18
|
+
"dependencies": {
|
|
19
|
+
"@fontsource-variable/geist": "^5.2.9",
|
|
20
|
+
"@tailwindcss/vite": "^4.3.0",
|
|
21
|
+
"class-variance-authority": "^0.7.1",
|
|
22
|
+
"clsx": "^2.1.1",
|
|
23
|
+
"lucide-react": "^1.16.0",
|
|
24
|
+
"radix-ui": "^1.4.3",
|
|
25
|
+
"react": "^19.2.6",
|
|
26
|
+
"react-dom": "^19.2.6",
|
|
27
|
+
"shadcn": "^4.8.0",
|
|
28
|
+
"tailwind-merge": "^3.6.0",
|
|
29
|
+
"tailwindcss": "^4.3.0",
|
|
30
|
+
"tw-animate-css": "^1.4.0"
|
|
31
|
+
},
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@eslint/js": "^10.0.1",
|
|
34
|
+
"@types/node": "^24.12.3",
|
|
35
|
+
"@types/react": "^19.2.14",
|
|
36
|
+
"@types/react-dom": "^19.2.3",
|
|
37
|
+
"@vitejs/plugin-react": "^6.0.1",
|
|
38
|
+
"eslint": "^10.3.0",
|
|
39
|
+
"eslint-plugin-react-hooks": "^7.1.1",
|
|
40
|
+
"eslint-plugin-react-refresh": "^0.5.2",
|
|
41
|
+
"globals": "^17.6.0",
|
|
42
|
+
"typescript": "~6.0.2",
|
|
43
|
+
"typescript-eslint": "^8.59.2",
|
|
44
|
+
"vite": "^8.0.12"
|
|
45
|
+
}
|
|
46
|
+
}
|