Files
medusa-store/www/utils/packages/utils/package.json
Shahed Nasser 4ffcc41fe7 chore(utils): update auth provider TSDocs + fix errors stopping references build (#9023)
- Updated the TSDocs of the auth provider
- Update the Node version in the docs-util as the outdated version was causing TypeScript error
- Add `@ts-ignore` for a line that was causing a typescript error. If there's a better fix here let me know
2024-09-09 13:53:33 +00:00

29 lines
548 B
JSON

{
"name": "utils",
"private": true,
"license": "MIT",
"publishConfig": {
"access": "public"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"version": "0.0.0",
"scripts": {
"build": "yarn clean && tsc",
"lint": "eslint --ext .ts src",
"clean": "rimraf dist",
"watch": "tsc --watch"
},
"peerDependencies": {
"typedoc": "0.26.x"
},
"devDependencies": {
"@types/node": "^20.12.10",
"typescript": "5.5"
},
"dependencies": {
"octokit": "^3.1.2",
"rimraf": "^5.0.5"
}
}