Skip to content

Instantly share code, notes, and snippets.

@barisbll
Last active July 19, 2023 10:17
Show Gist options
  • Save barisbll/8fc0402f9b0d8f8769735e6df9e22045 to your computer and use it in GitHub Desktop.
Save barisbll/8fc0402f9b0d8f8769735e6df9e22045 to your computer and use it in GitHub Desktop.
dummy-lib package.json after changeset
{
"name": "@barisbll/dummy-lib",
"version": "1.0.2",
"description": "A dummy library to make a library deployment example",
"main": "index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"release": "pnpm run build && changeset publish"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"tsup": "^7.1.0",
"typescript": "^5.1.6"
},
"devDependencies": {
"@changesets/cli": "^2.26.2"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment