-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.46 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.46 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
{
"name": "dexcom-share-api",
"version": "1.1.0",
"files": [
"dist"
],
"main": "./dist/dexcom-share-api.umd.js",
"module": "./dist/dexcom-share-api.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/dexcom-share-api.es.js",
"require": "./dist/dexcom-share-api.umd.js"
}
},
"description": "Lightweight JS wrapper for the unofficial Dexcom share API. Useful if you need access to realtime glucose levels.",
"author": "Elliot Dohm",
"license": "MIT",
"keywords": [
"dexcom",
"dexcom api",
"share api",
"shareous",
"shareous1",
"share1",
"share2"
],
"scripts": {
"build": "tsc && vite build",
"test": "jest --no-coverage"
},
"devDependencies": {
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@rollup/plugin-typescript": "^8.3.0",
"@testing-library/jest-dom": "^5.16.1",
"@types/isomorphic-fetch": "^0.0.35",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-transform-vite-meta-env": "^1.0.3",
"isomorphic-unfetch": "^3.1.0",
"jest": "^27.4.5",
"tslib": "^2.3.1",
"typescript": "^4.8.4",
"vite": "^2.7.9"
},
"dependencies": {
"isomorphic-fetch": "^3.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aud/dexcom-share-api.git"
},
"bugs": {
"url": "https://github.com/aud/dexcom-share-api/issues"
},
"homepage": "https://github.com/aud/dexcom-share-api#readme"
}