Skip to content

Commit

Permalink
feat: update libs and fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
fedorovvvv committed Oct 15, 2023
1 parent 73598d8 commit 47f2190
Show file tree
Hide file tree
Showing 3 changed files with 580 additions and 555 deletions.
38 changes: 27 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"version": "1.5.3",
"license": "MIT",
"main": "./index.js",
"types": "./index.d.ts",
"svelte": "./index.js",
"repository": "https://github.com/fedorovvvv/svelte-floating-ui",
"author": "Nikita Fedorov <[email protected]>",
Expand Down Expand Up @@ -32,24 +33,39 @@
"devDependencies": {
"@sveltejs/kit": "1.0.0-next.589",
"@sveltejs/package": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-svelte3": "^4.0.0",
"prettier": "^2.8.4",
"prettier-plugin-svelte": "^2.9.0",
"svelte": "^3.57.0",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"svelte": "^3.59.2",
"svelte-check": "^2.10.3",
"svelte-preprocess": "^4.10.7",
"svelte2tsx": "^0.5.23",
"tslib": "^2.5.0",
"tslib": "^2.6.2",
"typescript": "^4.9.5",
"vite": "^4.2.0"
"vite": "^4.4.11"
},
"type": "module",
"dependencies": {
"@floating-ui/core": "^1.2.4",
"@floating-ui/dom": "^1.2.4"
"@floating-ui/core": "^1.5.0",
"@floating-ui/dom": "^1.5.3"
},
"exports": {
"./package.json": "./package.json",
"./core": {
"import": "./core/index.js",
"types": "./core/index.d.ts"
},
"./dom": {
"import": "./dom/index.js",
"types": "./dom/index.d.ts"
},
".": {
"import": "./index.js",
"types": "./index.d.ts"
}
}
}
Loading

0 comments on commit 47f2190

Please sign in to comment.