forked from Thanhal-P-A/rn-animated-ellipsis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.53 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@reagankm/rn-animated-ellipsis",
"version": "3.0.0",
"description": "An updated version of rn-animated-ellipsis, a simple, customizable animated dots component ideal for loading screens in React Native apps.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"author": {
"name": "Reagan Middlebrook",
"email": "[email protected]"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reagankm/rn-animated-ellipsis.git"
},
"bugs": {
"url": "https://github.com/reagankm/rn-animated-ellipsis/issues"
},
"homepage": "https://github.com/reagankm/rn-animated-ellipsis",
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-transform-private-methods": "^7.25.9",
"@babel/runtime": "^7.26.0",
"@react-native/eslint-config": "^0.73.1",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^12.9.0",
"@types/jest": "^29.5.14",
"@types/react": "^18.0.0",
"@types/react-native": "^0.70.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"metro-react-native-babel-preset": "^0.77.0",
"prettier": "^3.0.3",
"react-test-renderer": "^18.3.1",
"tsup": "^8.3.5",
"typescript": "^4.9.5"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"test": "jest",
"typecheck": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"postbuild": "rm -f dist/*.mts"
},
"eslintConfig": {
"root": true,
"extends": [
"@react-native",
"prettier"
],
"rules": {
"react/react-in-jsx-scope": "off",
"prettier/prettier": [
"error",
{
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "es5",
"useTabs": false
}
]
}
},
"eslintIgnore": [
"node_modules/"
],
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "es5",
"useTabs": false
},
"keywords": [
"react-native",
"animated ellipsis",
"rn-animated-ellipsis",
"react-native-animated-ellipsis",
"loading animation"
],
"files": [
"dist",
"README.md",
"LICENSE"
],
"readme": "README.md"
}