-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.83 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.83 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
{
"name": "@cardog/ocm-client",
"version": "0.1.1",
"description": "TypeScript client for the Open Charge Map API - access the world's largest open database of EV charging stations",
"author": "Cardog <hello@cardog.io>",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"clean": "rm -rf dist",
"prepublishOnly": "pnpm run clean && pnpm run build",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"openchargemap",
"ocm",
"ev",
"electric-vehicle",
"charging-stations",
"chargers",
"api-client",
"typescript",
"evse",
"charging-infrastructure",
"poi",
"geolocation"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cardog-ai/ocm-client.git"
},
"bugs": {
"url": "https://github.com/cardog-ai/ocm-client/issues"
},
"homepage": "https://github.com/cardog-ai/ocm-client#readme",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.0",
"tsup": "^8.0.0",
"typescript": "^5.3.0",
"vitest": "^2.0.0"
}
}