Skip to content

Commit

Permalink
Fix library format. Bump to version 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Atokulus committed Feb 10, 2023
1 parent e684be7 commit 448e82e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
File renamed without changes.
File renamed without changes.
17 changes: 9 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,30 @@
{
"name": "vuexr",
"version": "0.5.0",
"version": "0.5.1",
"description": "VueXR is a Vue plugin that let's you project regular DOM components onto augmented reality (AR) markers in real-time.",
"engines": {
"yarn": ">=1.22.19",
"node": ">=18.4.0"
},
"type": "module",
"files": [
"dist/**/*.js",
"dist/**/*.cjs",
"dist/**/*.mjs",
"dist/**/*.umd.js",
"dist/**/*.d.ts",
"dist/**/*.d.ts.map",
"dist/**/*.css",
"dist/**/*.html",
"src/opencv/build_simd/opencv.js"
],
"main": "./dist/vuexr.umd.cjs",
"module": "./dist/vuexr.js",
"types": "./dist/index.d.ts",
"style": "./dist/style.css",
"main": "dist/vuexr.umd.js",
"module": "dist/vuexr.mjs",
"types": "dist/index.d.ts",
"style": "dist/style.css",
"exports": {
".": {
"import": "./dist/vuexr.js",
"require": "./dist/vuexr.umd.cjs"
"import": "./dist/vuexr.mjs",
"require": "./dist/vuexr.umd.js"
},
"./opencv": "./src/opencv/build_simd/opencv.js"
},
Expand Down

0 comments on commit 448e82e

Please sign in to comment.