-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 997 Bytes
/
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
{
"name": "veloxi",
"author": "Taha Shashtari ([email protected])",
"version": "0.15.3",
"private": false,
"type": "module",
"main": "./dist/veloxi.min.js",
"module": "./dist/veloxi.js",
"types": "./dist/veloxi.d.ts",
"exports": {
".": {
"import": "./dist/veloxi.js",
"require": "./dist/veloxi.min.js"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"tsc": "tsc --noEmit",
"build": "tsc && vite build",
"preview": "vite preview"
},
"devDependencies": {
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.5.4",
"vite": "^5.4.2",
"vite-plugin-dts": "^4.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/TahaSh/veloxi.git"
},
"keywords": [
"interactive",
"transition",
"animation",
"drag",
"swipe",
"smooth"
],
"license": "MIT"
}