Skip to content

Commit

Permalink
fix: export and entry points and bump package version
Browse files Browse the repository at this point in the history
  • Loading branch information
lilpolymath committed Jun 14, 2024
1 parent b69a9db commit a25c9ea
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
{
"name": "@bolajiolajide/now-playing",
"version": "0.0.10",
"version": "0.0.11",
"description": "",
"main": "dist/now-playing.js",
"main": "dist/now-playing.cjs.js",
"module": "dist/now-playing.esm.js",
"types": "dist/now-playing.d.ts",
"type": "module",
"scripts": {
"ex:spotify": "ts-node examples/spotify.ts",
"ex:noop": "ts-node examples/noop.ts",
"build": "npx rimraf dist && rollup --config"
},
"exports": {
"require": "./dist/now-playing.cjs.js",
"types": "./dist/now-playing.d.ts",
"default": "./dist/now-playing.esm.js"
},
"files": [
"dist/now-playing.d.ts",
"dist/now-playing.js",
"dist/now-playing.js.map"
"dist"
],
"keywords": [],
"author": "",
Expand Down

0 comments on commit a25c9ea

Please sign in to comment.