add version and release scripts to package.json

This commit is contained in:
Antoine Kingue 2024-03-06 15:16:38 +01:00
parent 55c03842f3
commit 15984d8bf6
2 changed files with 2923 additions and 31 deletions

2948
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -21,7 +21,9 @@
"scripts": {
"index": "ts-node ./src/cli.ts",
"build": "tsup",
"dev": "tsup --watch"
"dev": "tsup --watch",
"version": "changeset version",
"release": "changeset publish"
},
"dependencies": {
"googleapis": "131.0.0",
@ -31,6 +33,8 @@
"printWidth": 120
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.3.3"