- Typescript config aren't picked up properly anymore since they're moved to `_tsconfig.base.json` in the root. So, we now read the config from the config file. - Update Typescript version in the `utils` monorepo to match that of the root monorepo
29 lines
551 B
JSON
29 lines
551 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.6.2"
|
|
},
|
|
"dependencies": {
|
|
"octokit": "^3.1.2",
|
|
"rimraf": "^5.0.5"
|
|
}
|
|
}
|