File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change 2020 "type" : " commonjs" ,
2121 "main" : " index.js" ,
2222 "scripts" : {
23- "test" : " cd mcp-openapi && npm install && npm run test"
23+ "install:all" : " npm install && cd mcp-openapi && npm install && cd ../mcp-test-client && npm install && cd ../sample-banking-api && npm install" ,
24+ "build" : " npm run build:mcp-openapi && npm run build:mcp-test-client && npm run build:sample-banking-api" ,
25+ "build:mcp-openapi" : " cd mcp-openapi && npm run build" ,
26+ "build:mcp-test-client" : " cd mcp-test-client && npm run build" ,
27+ "build:sample-banking-api" : " cd sample-banking-api && npm run build" ,
28+ "test" : " npm run test:mcp-openapi && npm run test:mcp-test-client" ,
29+ "test:mcp-openapi" : " cd mcp-openapi && npm run test" ,
30+ "test:mcp-test-client" : " cd mcp-test-client && npm run test" ,
31+ "clean" : " rm -rf mcp-openapi/dist mcp-test-client/dist sample-banking-api/dist" ,
32+ "dev:banking-api" : " cd sample-banking-api && npm run server:dev" ,
33+ "start:banking-api" : " cd sample-banking-api && npm run server"
2434 }
2535}
You can’t perform that action at this time.
0 commit comments