Skip to content

Commit

Permalink
fix index extension in publication
Browse files Browse the repository at this point in the history
  • Loading branch information
Armin Jazi committed May 3, 2024
1 parent 60b3551 commit 11e9b86
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"name": "@openreplyde/web-docker",
"version": "1.0.0-alpha.4",
"version": "1.0.0-alpha.5",
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.umd.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.umd.js"
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"types": "./dist/index.d.ts",
"scripts": {
"dev:test-host": "vite --config vite.config.test-host.ts --host",
"build:web-docker": "vue-tsc --noEmit && vite build --config vite.config.web-docker.ts",
Expand Down

0 comments on commit 11e9b86

Please sign in to comment.