Skip to content

Instantly share code, notes, and snippets.

@xebu
Created April 30, 2024 12:32
Show Gist options
  • Save xebu/4898e7a5ddcb877d61ed17d79d9a6f84 to your computer and use it in GitHub Desktop.
Save xebu/4898e7a5ddcb877d61ed17d79d9a6f84 to your computer and use it in GitHub Desktop.
{
"name": "@yourcompany/date-adapter",
"version": "1.0.0",
"description": "A utility package to adapt various date functions from Moment.js to Day.js.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest" // or your test runner command
},
"author": "Your Name",
"license": "ISC", // or your preferred license
"dependencies": {
"dayjs": "^1.10.7",
"moment": "^2.29.1"
},
"devDependencies": {
"typescript": "^4.x",
"@types/jest": "^27.x",
"jest": "^27.x"
},
"private": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment