-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1003 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1003 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
38
39
40
41
42
43
44
{
"name": "@basictech/expo",
"version": "0.0.10",
"description": "Basic SDK for Expo React Native",
"main": "dist/index.js",
"module": "dist/index.mjs",
"react-native": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"src/",
"dist/"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsup src/index.tsx --format cjs,esm --dts",
"prepare": "npm run build",
"prepublish": "npm run build"
},
"keywords": [
"react-native",
"expo",
"basic"
],
"author": "",
"license": "ISC",
"peerDependencies": {
"expo": "*",
"expo-auth-session": "^6.1.5",
"expo-secure-store": "^14.2.3",
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@types/react": "^19.1.2",
"@types/react-native": "^0.73.0",
"expo-auth-session": "^6.1.5",
"expo-secure-store": "^14.2.3",
"tsup": "^8.4.0",
"typescript": "^5.8.3"
},
"publishConfig": {
"access": "public"
}
}