-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) 路 1.71 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) 路 1.71 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
{
"name": "@rut-cl/react-native",
"version": "0.1.7",
"description": "馃嚚馃嚤 React Native utilities and input component for Chilean RUT validation powered by rut-cl.",
"license": "MIT",
"author": "Jose Duin",
"repository": {
"type": "git",
"url": "https://github.com/joseduin/rut-cl-react-native"
},
"homepage": "https://github.com/joseduin/rut-cl-react-native",
"keywords": [
"rut",
"chile",
"react-native",
"validation",
"rut-cl"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"react-native": "./dist/index.mjs",
"sideEffects": false,
"exports": {
".": {
"react-native": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "./node_modules/.bin/tsup",
"dev": "./node_modules/.bin/tsup --watch",
"clean": "rm -rf dist",
"prepare": "npm run clean && npm run build",
"release": "npm version patch && npm pack && npm publish --access public",
"deploy:actions": "npm version patch && git push --follow-tags"
},
"peerDependencies": {
"react": ">=18",
"react-native": ">=0.70"
},
"dependencies": {
"rut-cl": "^1.0.1"
},
"devDependencies": {
"@types/react": "^19.0.0",
"@types/react-native": "^0.73.0",
"react": "^19.1.0",
"react-native": "^0.80.3",
"tsup": "^8.0.0",
"typescript": "^5.0.0"
},
"overrides": {
"minimatch": "10.2.1"
}
}