Skip to content

Commit

Permalink
Update package to support module exports
Browse files Browse the repository at this point in the history
  • Loading branch information
coreybutler committed Sep 18, 2022
1 parent 42f80f5 commit c808625
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
{
"name": "@ngnjs/plugin",
"version": "1.0.0-alpha.9",
"version": "1.0.0-alpha.10",
"description": "A plugin module for NGN.",
"main": "src/index.js",
"main": "./src/index.js",
"module": "index.js",
"exports": {
".": {
"import": "./index.js"
}
},
"browser": "./index.js",
"scripts": {
"test": "npm run test:node && npm run test:deno && npm run test:browser && npm run report:syntax && npm run report:size",
Expand Down

0 comments on commit c808625

Please sign in to comment.