-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.54 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.54 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
{
"name": "@interactive-inc/docs-client",
"version": "1.2.0",
"type": "module",
"scripts": {
"format": "biome check . --fix --unsafe",
"claude": "claude --dangerously-skip-permissions --mcp-config .mcp.json",
"claude:continue": "claude --continue --dangerously-skip-permissions --mcp-config .mcp.json",
"check": "tsgo --noEmit",
"build": "tsup",
"deploy": "bun publish",
"dev": "bun run index.dev"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.0",
"@octokit/rest": "^22.0.0",
"yaml": "^2.8.1",
"zod": "^4.0.10"
},
"devDependencies": {
"@biomejs/biome": "^2.1.2",
"@types/bun": "^1.2.19",
"@types/node": "^24.1.0",
"@typescript/native-preview": "^7.0.0-dev.20251121.1",
"concurrently": "^9.2.0",
"tsup": "^8.5.0",
"typescript": "^5.9.3"
},
"peerDependencies": {
"zod": "^4.0.0"
},
"publishConfig": {
"access": "public"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"module": "build/index.js",
"exports": {
".": "./build/index.js",
"./models": "./build/models.js",
"./file-system": "./build/file-system.js",
"./file-system-json": "./build/file-system-json.js",
"./file-system-mock": "./build/file-system-mock.js",
"./file-system-node": "./build/file-system-node.js",
"./file-system-octokit": "./build/file-system-octokit.js"
},
"homepage": "https://github.com/interactive-inc/open-docs-client",
"repository": {
"type": "git",
"url": "https://github.com/interactive-inc/open-docs-client.git"
}
}