forked from anhnch/react-native-pin-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 707 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 707 Bytes
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
{
"name": "@antonmihail/react-native-pincode",
"version": "0.0.1",
"description": "Pin Code component for React Native",
"scripts": {
"build": "tsc --project ./tsconfig.json",
"clean": "rimraf dist",
"prepublishOnly": "yarn clean && yarn build"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Anton Lachmaniucu <antonmihail@gmail.com> https://github.com/anton2mihail",
"license": "MIT",
"devDependencies": {
"@types/react": "^17.0.2",
"@types/react-native": "^0.63.4",
"typescript": "^5.0.3"
},
"peerDependencies": {
"react": ">=17.0.2",
"react-native": "*"
},
"files": [
"dist/**/*"
],
"packageManager": "yarn@4.1.1"
}