-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.4 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "react-native-llm-meter",
"version": "0.3.1",
"description": "LLM observability for React Native and Expo. Token usage, cost, and latency metrics, on device, multi provider.",
"license": "MIT",
"author": "Ankit Virdi <ankitvirdi4@gmail.com> (https://github.com/ankitvirdi4)",
"repository": {
"type": "git",
"url": "git+https://github.com/ankitvirdi4/react-native-llm-meter.git"
},
"homepage": "https://github.com/ankitvirdi4/react-native-llm-meter#readme",
"bugs": {
"url": "https://github.com/ankitvirdi4/react-native-llm-meter/issues"
},
"keywords": [
"react-native",
"expo",
"llm",
"observability",
"anthropic",
"claude",
"openai",
"gemini",
"tokens",
"cost",
"metering",
"telemetry"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./react": {
"types": "./dist/react.d.ts",
"import": "./dist/react.js",
"require": "./dist/react.cjs"
},
"./overlay": {
"types": "./dist/overlay.d.ts",
"import": "./dist/overlay.js",
"require": "./dist/overlay.cjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"@react-native-async-storage/async-storage": ">=1.19.0",
"react": ">=18",
"react-native": ">=0.72"
},
"peerDependenciesMeta": {
"@react-native-async-storage/async-storage": {
"optional": true
},
"react-native": {
"optional": true
}
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@react-native-async-storage/async-storage": "^3.0.2",
"@testing-library/react": "^16.0.0",
"@types/better-sqlite3": "^7.6.11",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitest/coverage-v8": "^2.0.5",
"better-sqlite3": "^12.9.0",
"happy-dom": "^20.9.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
}
}