-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.77 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "react-native-nitro-api",
"version": "0.1.1",
"description": "High-performance React Native API client with optional Nitro cache",
"keywords": [
"react-native",
"nitro",
"jsi",
"api-client",
"axios",
"cache",
"dedupe",
"upload",
"resumable-upload",
"typescript"
],
"homepage": "https://github.com/fazzysyed/react-native-nitro-api#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/fazzysyed/react-native-nitro-api.git"
},
"bugs": {
"url": "https://github.com/fazzysyed/react-native-nitro-api/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"react-native": "src/index.ts",
"license": "MIT",
"files": [
"dist",
"src/**/*.ts",
"!src/**/*.test.ts",
"!src/__tests__/**",
"cpp",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"react-native": "./src/index.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"typecheck": "tsc --noEmit",
"build": "rm -rf dist && tsc -p tsconfig.json",
"test": "jest --watchman=false",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run typecheck && npm run build"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-native": ">=0.73.0",
"react-native-nitro-modules": "*"
},
"peerDependenciesMeta": {
"react-native-nitro-modules": {
"optional": true
}
},
"dependencies": {
"axios": "latest"
},
"optionalDependencies": {
"@tanstack/react-query": "latest"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/react": "^19.2.14",
"jest": "^30.3.0",
"ts-jest": "^29.4.9",
"typescript": "latest"
},
"publishConfig": {
"access": "public"
}
}