chore(ws): move package.json to plugin root

This commit is contained in:
Jonas Kruckenberg
2023-01-05 14:10:53 +01:00
parent 35a21e1347
commit 7337826bef
@@ -6,20 +6,20 @@
"Tauri Programme within The Commons Conservancy"
],
"type": "module",
"browser": "dist/index.min.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"browser": "guest-js/dist/index.min.js",
"module": "guest-js/dist/index.mjs",
"types": "guest-js/dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"browser": "./dist/index.min.js"
"import": "./guest-js/dist/index.mjs",
"types": "./guest-js/dist/index.d.ts",
"browser": "./guest-js/dist/index.min.js"
},
"scripts": {
"build": "rollup -c"
},
"files": [
"dist",
"!dist/**/*.map",
"guest-js/dist",
"!guest-js/dist/**/*.map",
"README.md",
"LICENSE"
],