Skip to content

Commit

Permalink
[Chore] specify packageManager and its version in package.json (#132)
Browse files Browse the repository at this point in the history
  • Loading branch information
ali4heydari committed Aug 7, 2024
1 parent e7626d9 commit 34f561a
Showing 1 changed file with 26 additions and 24 deletions.
50 changes: 26 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,6 @@
"name": "@7nohe/openapi-react-query-codegen",
"version": "1.4.1",
"description": "OpenAPI React Query Codegen",
"bin": {
"openapi-rq": "dist/cli.mjs"
},
"type": "module",
"workspaces": ["examples/*"],
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.json",
"lint": "biome check .",
"lint:fix": "biome check --apply .",
"preview": "npm run build && npm -C examples/react-app run generate:api",
"prepublishOnly": "npm run build",
"release": "npx git-ensure -a && npx bumpp --commit --tag --push",
"test": "vitest --coverage.enabled true",
"snapshot": "vitest --update"
},
"repository": {
"type": "git",
"url": "git+https://github.com/7nohe/openapi-react-query-codegen.git"
},
"homepage": "https://github.com/7nohe/openapi-react-query-codegen",
"bugs": "https://github.com/7nohe/openapi-react-query-codegen/issues",
"files": ["dist"],
"keywords": [
"codegen",
"react-query",
Expand All @@ -34,8 +12,30 @@
"openapi-typescript-codegen",
"@hey-api/openapi-ts"
],
"author": "Daiki Urata (@7nohe)",
"homepage": "https://github.com/7nohe/openapi-react-query-codegen",
"bugs": "https://github.com/7nohe/openapi-react-query-codegen/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/7nohe/openapi-react-query-codegen.git"
},
"license": "MIT",
"author": "Daiki Urata (@7nohe)",
"type": "module",
"bin": {
"openapi-rq": "dist/cli.mjs"
},
"files": ["dist"],
"workspaces": ["examples/*"],
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.json",
"lint": "biome check .",
"lint:fix": "biome check --apply .",
"prepublishOnly": "npm run build",
"preview": "npm run build && npm -C examples/react-app run generate:api",
"release": "npx git-ensure -a && npx bumpp --commit --tag --push",
"snapshot": "vitest --update",
"test": "vitest --coverage.enabled true"
},
"dependencies": {
"@hey-api/openapi-ts": "0.45.1"
},
Expand All @@ -58,7 +58,9 @@
"ts-morph": "22.x",
"typescript": "5.x"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=14"
"node": ">=14",
"pnpm": ">=9"
}
}

0 comments on commit 34f561a

Please sign in to comment.