Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,13 @@
"prepare": "npm run build",
"build:clean": "rm -rf dist",
"build:update-package-version": "tsx scripts/updatePackageVersion.ts",
"build:esm": "tsc --project tsconfig.esm.json",
"build:esm": "tsc --project tsconfig.esm.json && chmod +x dist/esm/index.js",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:universal-package": "tsx scripts/createUniversalPackage.ts",
"build:chmod": "chmod +x dist/esm/index.js",
"build": "npm run build:clean && npm run build:esm && npm run build:cjs && npm run build:universal-package && npm run build:chmod",
"build": "npm run build:clean && concurrently 'npm run build:esm' 'npm run build:cjs' 'npm run build:universal-package'",
"inspect": "npm run build && mcp-inspector -- dist/esm/index.js",
"prettier": "prettier",
"check": "npm run build && npm run check:types && npm run check:lint && npm run check:format && npm run check:dependencies",
"check": "concurrently 'npm run build' 'npm run check:types' 'npm run check:lint' 'npm run check:format' 'npm run check:dependencies'",
"check:lint": "eslint .",
"check:dependencies": "knip --strict",
"check:format": "prettier -c .",
Expand Down
Loading