Skip to content

Commit 57e7835

Browse files
revert
1 parent 500e161 commit 57e7835

File tree

3 files changed

+73
-0
lines changed

3 files changed

+73
-0
lines changed

package-lock.json

Lines changed: 67 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@
4646
"devDependencies": {
4747
"@eslint/js": "^9.35.0",
4848
"@modelcontextprotocol/sdk": "1.20.0",
49+
"@rollup/plugin-commonjs": "^28.0.8",
50+
"@rollup/plugin-json": "^6.1.0",
4951
"@rollup/plugin-node-resolve": "^16.0.3",
5052
"@stylistic/eslint-plugin": "^5.4.0",
5153
"@types/debug": "^4.1.12",

rollup.config.mjs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
import path from 'node:path';
88

9+
import commonjs from '@rollup/plugin-commonjs';
10+
import json from '@rollup/plugin-json';
911
import {nodeResolve} from '@rollup/plugin-node-resolve';
1012
import cleanup from 'rollup-plugin-cleanup';
1113
import license from 'rollup-plugin-license';
@@ -69,6 +71,8 @@ const sdk = {
6971
},
7072
},
7173
}),
74+
commonjs(),
75+
json(),
7276
nodeResolve(),
7377
],
7478
};

0 commit comments

Comments
 (0)