@sixtynine-digital/blitz-mcp 0.1.0 → 0.1.1

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.
package/package.json CHANGED
@@ -1,25 +1,25 @@
1
1
  {
2
2
  "name": "@sixtynine-digital/blitz-mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "license": "AGPL-3.0",
5
5
  "description": "MCP server for Blitz project management",
6
6
  "private": false,
7
7
  "type": "module",
8
8
  "bin": {
9
- "blitz-mcp": "./dist/index.mjs"
9
+ "blitz-mcp": "dist/index.js"
10
10
  },
11
11
  "exports": {
12
- ".": "./dist/index.mjs",
12
+ ".": "./dist/index.js",
13
13
  "./package.json": "./package.json"
14
14
  },
15
- "main": "./dist/index.mjs",
16
- "module": "./dist/index.mjs",
17
- "types": "./dist/index.d.mts",
15
+ "main": "./dist/index.js",
16
+ "module": "./dist/index.js",
17
+ "types": "./dist/index.d.ts",
18
18
  "files": [
19
19
  "dist"
20
20
  ],
21
21
  "scripts": {
22
- "build": "tsdown",
22
+ "build": "tsdown && node -e \"const fs=require('fs');const p=require('path');const d='dist';fs.readdirSync(d).forEach(f=>{if(f.endsWith('.mjs'))fs.renameSync(p.join(d,f),p.join(d,f.replace('.mjs','.js')));if(f.endsWith('.d.mts'))fs.renameSync(p.join(d,f),p.join(d,f.replace('.d.mts','.d.ts')));if(f.endsWith('.mjs.map'))fs.renameSync(p.join(d,f),p.join(d,f.replace('.mjs.map','.js.map')))})\"",
23
23
  "dev": "tsdown --watch",
24
24
  "check:lint": "eslint . --cache --cache-location node_modules/.cache/eslint/ --max-warnings=0",
25
25
  "check:types": "tsc --noEmit",
File without changes
File without changes
File without changes