-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.02 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 3.02 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
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "googlemaps-kit",
"version": "0.6.0",
"description": "TypeScript SDK + Bubble Tea TUI for Google Maps consumer surfaces",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./advanced": {
"import": {
"types": "./dist/advanced.d.ts",
"default": "./dist/advanced.js"
}
}
},
"bin": {
"googlemaps-kit": "dist/cli.js"
},
"files": [
"dist",
"LICENSE",
"README.md",
".github/assets/banner.png"
],
"sideEffects": false,
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"type-check": "tsc -p tsconfig.check.json --noEmit",
"prepublishOnly": "npm run clean && npm run build && npm run type-check && npm test",
"test": "vitest run tests/unit",
"test:watch": "vitest",
"test:live": "GMAPS_LIVE=1 vitest run tests/live",
"preexample": "npm run build",
"example:quick-start": "tsx examples/quick-start.ts",
"example:search": "tsx examples/search-text.ts",
"example:pagination": "tsx examples/search-pagination.ts",
"example:place": "tsx examples/place-get.ts",
"example:place-full": "tsx examples/place-full.ts",
"example:reviews": "tsx examples/reviews-list.ts",
"example:directions": "tsx examples/directions-get.ts",
"example:geocode": "tsx examples/geocode.ts",
"example:suggest": "tsx examples/suggest.ts",
"example:maps-url": "tsx examples/maps-url.ts",
"example:grid-search": "tsx examples/grid-search.ts",
"examples:all": "npm run build && tsx examples/run-all.ts",
"verify:all": "tsx scripts/verify-all.ts",
"smoke:daily": "tsx scripts/smoke-daily.ts",
"api:serve": "tsx src/server/api-server.ts",
"api:build": "tsc -p tsconfig.server.json"
},
"keywords": [
"google-maps",
"google-maps-api",
"google-maps-scraper",
"google-places-api",
"places-api-alternative",
"google-maps-without-api-key",
"unofficial-google-maps-api",
"free-google-maps-api",
"google-maps-reviews-api",
"google-maps-directions",
"local-business-scraper",
"maps-scraper",
"places-api",
"geocoding",
"directions",
"reviews",
"typescript",
"nodejs",
"no-api-key",
"sdk",
"cli",
"tui",
"bubbletea"
],
"author": "Kumar Vandit",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/KumarVandit/googlemaps-kit.git"
},
"bugs": {
"url": "https://github.com/KumarVandit/googlemaps-kit/issues"
},
"homepage": "https://googlemapskit.vaandeetttt.com",
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.21.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"dependencies": {
"@oakoliver/bubbles": "^1.0.3",
"@oakoliver/bubbletea": "^1.0.2",
"@oakoliver/lipgloss": "^1.0.3",
"geo-tz": "^8.1.8",
"undici": "^6.28.0"
}
}