-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 1.65 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
{
"name": "svglide",
"description": "A collection of animated SVG icons for React and TypeScript",
"version": "1.0.0",
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"prepare": "npm run build",
"preview": "vite preview"
},
"keywords": [
"react",
"icons",
"svg",
"typescript",
"animation",
"icon-pack",
"ui",
"components",
"react-components",
"svg-icons",
"icon-library",
"animated-icons",
"design-system",
"frontend",
"web"
],
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@types/node": "^22.8.6",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.2",
"vite": "^5.4.8",
"vite-plugin-dts": "^3.0.0",
"typescript": "^5.5.3"
},
"author": {
"name": "Burak Sakalli",
"url": "https://buraksakalli.com"
},
"repository": {
"url": "https://github.com/buraksakalli/svglide",
"type": "git"
},
"bugs": {
"url": "https://github.com/buraksakalli/svglide/issues"
},
"homepage": "https://github.com/buraksakalli/svglide#readme",
"license": "MIT",
"sideEffects": false,
"engines": {
"node": ">=14"
},
"publishConfig": {
"access": "public"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/buraksakalli"
}
}