-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.16 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
{
"name": "react-gradient-animation",
"version": "1.0.6",
"description": "A highly customizable, animated gradient background component for React applications.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"prepare": "npm run build"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"!src/**",
"dist",
"types"
],
"keywords": [
"react",
"gradient",
"background",
"animation",
"canvas",
"animated",
"react-component",
"gradient-background",
"typescript"
],
"author": "Stian Larsen",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/stianlars1/react-gradient-animation.git"
},
"bugs": {
"url": "https://github.com/stianlars1/react-gradient-animation/issues"
},
"homepage": "https://github.com/stianlars1/react-gradient-animation#readme",
"dependencies": {},
"peerDependencies": {
"react": "^18.3.1"
},
"devDependencies": {
"@types/node": "^22.7.4",
"@types/react": "^18.3.11",
"typescript": "^5.6.2"
}
}