forked from realimposter/react-native-animated-glow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.35 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.35 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "react-native-animated-glow",
"version": "3.0.1",
"description": "A performant, highly-customizable animated glow effect for React Native, powered by Skia and Reanimated.",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index.ts",
"source": "src/index.ts",
"files": [
"src/",
"lib/",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./lib/typescript/index.d.ts",
"module": "./lib/module/index.js",
"require": "./lib/commonjs/index.js"
},
"./presets": {
"types": "./lib/typescript/glow-presets.d.ts",
"module": "./lib/module/glow-presets.js",
"require": "./lib/commonjs/glow-presets.js"
}
},
"scripts": {
"build": "bob build",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/realimposter/react-native-animated-glow.git"
},
"keywords": [
"react-native",
"skia",
"reanimated",
"glow",
"animation",
"animated",
"border",
"effect",
"neon",
"button glow",
"animated glow",
"glowing button",
"inner glow",
"apple intelligence",
"gradient",
"hover",
"press",
"interactive"
],
"author": "realimposter <support@imposterllc.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/realimposter/react-native-animated-glow/issues"
},
"homepage": "https://reactnativeglow.com",
"peerDependencies": {
"react": "*",
"react-native": "*",
"@shopify/react-native-skia": ">=0.2.0 || ^2.0.0-next",
"react-native-reanimated": ">=3.0.0",
"react-native-gesture-handler": ">=2.0.0"
},
"dependencies": {
"canvaskit-wasm": "0.39.1"
},
"devDependencies": {
"@types/react": "^18.2.0",
"typescript": "^5.0.0",
"react": "18.2.0",
"react-native": "0.74.0",
"@shopify/react-native-skia": "1.3.1",
"react-native-reanimated": "3.12.0",
"react-native-gesture-handler": "2.16.2",
"react-native-builder-bob": "^0.23.2"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}