-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.2 KB
/
package.json
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
{
"name": "@camrymps/toyota-client-v2",
"version": "1.0.0",
"description": "A TypeScript-native, unofficial API client that retrieves data on Toyota vehicles, directly from toyota.com.",
"repository": {
"type": "git",
"url": "https://github.com/camrymps/toyota-client-v2"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"homepage": "http://camrymps.github.io/toyota-client-v2",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"build": "tsc",
"docs": "npx typedoc"
},
"files": [
"dist"
],
"keywords": [
"toyota",
"car",
"cars",
"vehicle",
"api",
"client"
],
"type": "module",
"author": "Michael Scott",
"license": "MIT",
"dependencies": {
"axios": "^1.6.8",
"lodash-es": "^4.17.21",
"user-agents": "^1.1.197",
"zod": "^3.23.6"
},
"devDependencies": {
"@babel/preset-env": "^7.24.5",
"@babel/preset-typescript": "^7.24.1",
"@types/axios": "^0.14.0",
"@types/node": "^20.12.11",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typedoc": "^0.25.13",
"typedoc-material-theme": "^1.0.2",
"typescript": "^5.4.5"
}
}