-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.12 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
{
"name": "blendy",
"author": "Taha Shashtari ([email protected])",
"private": false,
"version": "0.0.1",
"type": "module",
"main": "./dist/blendy.min.js",
"module": "./dist/blendy.js",
"types": "./dist/blendy.d.ts",
"exports": {
".": {
"import": "./dist/blendy.js",
"require": "./dist/blendy.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": "^5.0.1",
"@types/node": "^22.10.1",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitejs/plugin-vue": "^5.2.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"svelte": "^5.8.0",
"typescript": "~5.6.2",
"vite": "^6.0.1",
"vite-plugin-dts": "^4.3.0",
"vue": "^3.5.13"
},
"keywords": [
"transition",
"morph",
"transform",
"blend",
"convert",
"smooth",
"animation"
],
"license": "MIT",
"homepage": "https://blendy.tahazsh.com/"
}