-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.2 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
{
"name": "@tubinex/react-native-charts",
"version": "0.0.4",
"description": "A collection of beautiful, customizable chart components for React Native",
"main": "src/index.ts",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"prepublishOnly": "npm run build"
},
"keywords": [
"react-native",
"charts",
"donut-chart",
"bar-chart",
"gauge",
"radial-chart",
"semicircle",
"visualization",
"svg",
"animated"
],
"author": "Tubinex",
"license": "MIT",
"peerDependencies": {
"@shopify/react-native-skia": ">=2.0.0",
"react": ">=16.8.0",
"react-native": ">=0.60.0",
"react-native-gesture-handler": ">=2.0.0",
"react-native-reanimated": ">=2.0.0"
},
"devDependencies": {
"@types/react": "~19.1.0",
"@types/react-native": "^0.72.0",
"prettier": "^3.6.2",
"typescript": "~5.9.2"
},
"repository": {
"type": "git",
"url": "https://github.com/Tubinex/react-native-charts"
},
"bugs": {
"url": "https://github.com/Tubinex/react-native-charts/issues"
},
"homepage": "https://github.com/Tubinex/react-native-charts#readme",
"files": [
"dist",
"src",
"README.md",
"LICENSE"
]
}