-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.77 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.77 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
{
"name": "@auto.dev/sdk",
"version": "0.1.23",
"description": "SDK, MCP, and CLI for the auto.dev APIs",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"auto": "./dist/cli/index.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./mcp": {
"import": "./dist/mcp/server.js",
"types": "./dist/mcp/server.d.ts"
},
"./core": {
"import": "./dist/core/client.js",
"types": "./dist/core/client.d.ts"
},
"./docs": {
"import": "./dist/docs/search-portable.js",
"types": "./dist/docs/search-portable.d.ts"
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"build:docs": "tsx scripts/build-docs.ts",
"build:docs-data": "tsx scripts/build-docs-data.ts",
"generate": "tsx scripts/generate.ts",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepublishOnly": "pnpm build:docs && pnpm build:docs-data && pnpm build"
},
"keywords": [
"auto.dev",
"automotive",
"vin",
"sdk",
"mcp",
"cli"
],
"license": "MIT",
"packageManager": "pnpm@9.11.0",
"repository": {
"type": "git",
"url": "https://github.com/auto-dot-dev/sdk"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"commander": "^14.0.3",
"id.org.ai": "^0.2.5",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.5.0",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
}
}