-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 951 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 951 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
28
29
30
31
32
33
34
35
36
37
{
"name": "react-native-vault-guardian",
"version": "1.0.0",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"files": [
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsup src/index.ts --format esm --dts --out-dir dist",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bluebird2000/react-native-vault-guardian.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Bluebird2000/react-native-vault-guardian/issues"
},
"homepage": "https://github.com/Bluebird2000/react-native-vault-guardian#readme",
"description": "",
"dependencies": {
"react": "^19.1.0",
"react-native": "^0.80.0"
},
"devDependencies": {
"@types/react": "^19.1.4",
"tsup": "^8.4.0",
"typescript": "^4.0.0"
}
}