Skip to content

Commit

Permalink
Fix package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
mpppk committed Dec 11, 2024
1 parent fe882d1 commit a036159
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions pkgs/typed-api-spec/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@
"name": "@notainc/typed-api-spec",
"version": "0.1.0",
"scripts": {
"build": "../../node_modules/.bin/tsup ./src",
"watch:build": "../../node_modules/.bin/tsup ./src --watch",
"format": "../../node_modules/.bin/prettier --write .",
"build": "tsup ./src",
"watch:build": "tsup ./src --watch",
"format": "prettier --write .",
"watch:type-check": "npx tsc --noEmit --watch",
"test": "../../node_modules/.bin/run-p test:*",
"test:unit": "../../node_modules/.bin/vitest",
"test:lint": "../../node_modules/.bin/eslint .",
"test:format": "../../node_modules/.bin/prettier --check .",
"test:type-check": "../../node_modules/.bin/tsc --noEmit",
"example:express-zod": "../../node_modules/.bin/tsx examples/express/zod/express.ts",
"example:express-zod-fetch": "../../node_modules/.bin/tsx examples/express/zod/fetch.ts",
"example:fasitify-zod": "../../node_modules/.bin/tsx examples/fastify/zod/fastify.ts",
"example:fasitify-zod-fetch": "../../node_modules/.bin/tsx examples/fastify/zod/fetch.ts",
"example:withValidation": "../../node_modules/.bin/tsx examples/simple/withValidation.ts"
"test": "run-p test:*",
"test:unit": "vitest",
"test:lint": "eslint .",
"test:format": "prettier --check .",
"test:type-check": "tsc --noEmit",
"example:express-zod": "tsx examples/express/zod/express.ts",
"example:express-zod-fetch": "tsx examples/express/zod/fetch.ts",
"example:fasitify-zod": "tsx examples/fastify/zod/fastify.ts",
"example:fasitify-zod-fetch": "tsx examples/fastify/zod/fetch.ts",
"example:withValidation": "tsx examples/simple/withValidation.ts"
},
"author": "mpppk",
"license": "MIT",
Expand Down

0 comments on commit a036159

Please sign in to comment.