diff --git a/package.json b/package.json index d18457b..17811c4 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "main": "main.js", "scripts": { "dev": "node esbuild.config.mjs", - "build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production", + "build": "npx tsc -noEmit -skipLibCheck && node esbuild.config.mjs production", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "format": "prettier --write 'src/**/*.{ts,tsx}'", @@ -29,7 +29,7 @@ "version": "node version-bump.mjs && git add manifest.json versions.json", "clean": "rm -rf main.js main.js.map coverage .jest-cache", "clean:all": "npm run clean && rm -rf node_modules", - "typecheck": "tsc -noEmit", + "typecheck": "npx tsc -noEmit", "validate": "npm run lint && npm run typecheck && npm run test", "ci": "npm run validate && npm run build" },