@nick-vi/type-inject-mcp 1.0.1 → 1.0.2

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.
Files changed (1) hide show
  1. package/package.json +9 -3
package/package.json CHANGED
@@ -1,12 +1,14 @@
1
1
  {
2
2
  "name": "@nick-vi/type-inject-mcp",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "MCP server for TypeScript type lookup",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "type-inject-mcp": "dist/index.js"
8
8
  },
9
- "files": ["dist/"],
9
+ "files": [
10
+ "dist/"
11
+ ],
10
12
  "scripts": {
11
13
  "build": "bun build src/index.ts --outdir dist --target node --format esm --packages external",
12
14
  "typecheck": "tsc --noEmit",
@@ -14,7 +16,7 @@
14
16
  },
15
17
  "dependencies": {
16
18
  "@modelcontextprotocol/sdk": "^1.0.0",
17
- "@nick-vi/type-inject-core": "1.0.2",
19
+ "@nick-vi/type-inject-core": "^1.0.2",
18
20
  "zod": "^4.3.5"
19
21
  },
20
22
  "peerDependencies": {
@@ -23,6 +25,10 @@
23
25
  "devDependencies": {
24
26
  "@types/bun": "latest"
25
27
  },
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "https://github.com/nick-vi/type-inject"
31
+ },
26
32
  "publishConfig": {
27
33
  "access": "public"
28
34
  }