-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.25 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
{
"name": "tesla-fleet-api",
"version": "0.3.0",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/Teslemetry/node-tesla-fleet-api"
},
"author": {
"name": "Teslemetry",
"email": "hello@teslemetry.com",
"url": "https://teslemetry.com"
},
"devDependencies": {
"@changesets/cli": "^2.31.1",
"@eslint/js": "^10.0.1",
"@types/node": "^24.13.3",
"eslint": "^10.8.0",
"publint": "^0.3.23",
"typescript": "^5.9.2",
"typescript-eslint": "^8.66.0",
"vitest": "^4.1.10"
},
"scripts": {
"prepare": "tsc",
"watch": "tsc -w",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"pack:check": "publint",
"changeset": "changeset",
"ci:publish": "changeset publish"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"files": [
"dist",
"src"
],
"keywords": [
"tesla",
"tesla fleet api",
"teslemetry",
"tessie"
],
"main": "dist/index.js",
"license": "Apache-2.0",
"dependencies": {
"@teslemetry/tesla-protocol": "^0.5.0"
}
}