-
Notifications
You must be signed in to change notification settings - Fork 147
/
Copy pathpackage.json
49 lines (49 loc) · 1.08 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
{
"name": "swapy",
"author": "Taha Shashtari ([email protected])",
"private": false,
"version": "1.0.3",
"type": "module",
"main": "./dist/swapy.min.js",
"module": "./dist/swapy.js",
"types": "./dist/swapy.d.ts",
"exports": {
".": {
"import": "./dist/swapy.js",
"require": "./dist/swapy.min.js"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"tsc": "tsc --noEmit",
"build": "tsc -p tsconfig.build.json && vite build",
"preview": "vite preview"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^4.0.1",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"@vitejs/plugin-vue": "^5.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"svelte": "^5.2.7",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-plugin-dts": "^4.3.0",
"vue": "^3.5.13"
},
"keywords": [
"swap",
"reorder",
"drag",
"smooth",
"animation"
],
"license": "GPL-3.0",
"homepage": "https://swapy.tahazsh.com/"
}