Last active
July 19, 2023 10:17
-
-
Save barisbll/8fc0402f9b0d8f8769735e6df9e22045 to your computer and use it in GitHub Desktop.
dummy-lib package.json after changeset
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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