-
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.44 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.44 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": "react-native-format-kit",
"version": "1.0.0",
"description": "Controlled currency input/text/hook utilities for React Native with Intl formatting and validation.",
"keywords": [
"react-native",
"currency",
"input",
"mask",
"intl",
"validation",
"hook",
"formatter"
],
"author": "SOM3-1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/SOM3-1/react-native-format-kit.git"
},
"bugs": {
"url": "https://github.com/SOM3-1/react-native-format-kit/issues"
},
"homepage": "https://github.com/SOM3-1/react-native-format-kit#readme",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"react-native": "dist/index.js",
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --clean",
"test": "jest"
},
"dependencies": {},
"peerDependencies": {
"react": ">=18.0.0",
"react-native": ">=0.72.0"
},
"devDependencies": {
"@types/react": "^19.2.7",
"@types/react-native": "^0.72.8",
"@types/jest": "^29.5.14",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^13.3.3",
"@babel/core": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@react-native/babel-preset": "^0.82.1",
"jest": "^29.7.0",
"babel-jest": "^29.7.0",
"prettier": "^3.3.3",
"react-test-renderer": "^19.2.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
}
}