You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "A utility to create nested objects based on string paths with TypeScript support.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"prepare": "npm run build",
"release:patch": "npm run test && npm run lint && npm version patch -m \"fix: handle empty remainingPath and bump version to %s\" && git push origin main --follow-tags && npm publish",
"release:minor": "npm run test && npm run lint && npm version minor -m \"feat: add new features and bump version to %s\" && git push origin main --follow-tags && npm publish",
"release:major": "npm run test && npm run lint && npm version major -m \"feat!: introduce breaking changes and bump version to %s\" && git push origin main --follow-tags && npm publish"