@teslemetry/api 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "@teslemetry/api",
3
+ "version": "0.0.1",
4
+ "description": "API client for Teslemetry",
5
+ "main": "dist/index.cjs",
6
+ "module": "dist/index.mjs",
7
+ "types": "dist/index.d.mts",
8
+ "exports": {
9
+ ".": {
10
+ "types": {
11
+ "import": "./dist/index.d.mts",
12
+ "require": "./dist/index.d.cts"
13
+ },
14
+ "import": "./dist/index.mjs",
15
+ "require": "./dist/index.cjs"
16
+ }
17
+ },
18
+ "files": [
19
+ "dist"
20
+ ],
21
+ "keywords": [
22
+ "tesla",
23
+ "teslemetry"
24
+ ],
25
+ "type": "module",
26
+ "author": {
27
+ "name": "Teslemetry",
28
+ "email": "hello@teslemetry.com",
29
+ "url": "https://teslemetry.com"
30
+ },
31
+ "license": "Apache-2.0",
32
+ "devDependencies": {
33
+ "@hey-api/openapi-ts": "0.88.0",
34
+ "dotenv": "^17.2.3",
35
+ "tsdown": "^0.16.7",
36
+ "tsx": "^4.20.6"
37
+ },
38
+ "scripts": {
39
+ "api": "pnpm build && node examples/api.ts",
40
+ "sse": "pnpm build && node examples/sse.ts",
41
+ "client": "openapi-ts --file openapi-ts.config.ts",
42
+ "build": "tsdown --format cjs,esm",
43
+ "tsc": "tsc --noEmit",
44
+ "release": "pnpm version patch"
45
+ }
46
+ }