Skip to content

Commit

Permalink
Corrected package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Kipicenko committed Jun 10, 2024
1 parent 22b10dd commit 93edf18
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
13 changes: 8 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
{
"name": "@chaocore/ripple",
"description": "The very easy, performance and flexible to use JavaScript/TypeScript library for creating a ripple effect.",
"version": "1.1.2",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"type": "module",
"description": "The very easy, performance and flexible to use JavaScript/TypeScript library for creating a ripple effect.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"unpkg": "dist/iife/index.min.js",
"types": "dist/types/index.d.ts",
"types": "./dist/types/index.d.ts",
"exports": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.cjs",
"import": "./dist/esm/index.js"
},
"unpkg": "./dist/iife/index.min.js",
"files": [
"dist"
],
Expand Down
1 change: 1 addition & 0 deletions rollup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ const build_cjs: RollupOptions = {
dir: "dist/cjs",
format: "cjs",
exports: "named",
entryFileNames: "[name].cjs",
preserveModules: true,
},
plugins: [
Expand Down

0 comments on commit 93edf18

Please sign in to comment.