You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.4 KiB
62 lines
1.4 KiB
{
|
|
"name": "@floating-ui/dom",
|
|
"version": "1.5.3",
|
|
"description": "Floating UI for the web",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"main": "./dist/floating-ui.dom.umd.js",
|
|
"module": "./dist/floating-ui.dom.esm.js",
|
|
"unpkg": "./dist/floating-ui.dom.umd.min.js",
|
|
"types": "./src/types.d.ts",
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
".": {
|
|
"import": {
|
|
"types": "./src/types.d.ts",
|
|
"default": "./dist/floating-ui.dom.mjs"
|
|
},
|
|
"types": "./src/types.d.ts",
|
|
"module": "./dist/floating-ui.dom.esm.js",
|
|
"default": "./dist/floating-ui.dom.umd.js"
|
|
}
|
|
},
|
|
"sideEffects": false,
|
|
"files": [
|
|
"dist/",
|
|
"**/*.d.ts",
|
|
"**/*.d.mts"
|
|
],
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "NODE_ENV=build rollup -c",
|
|
"test": "vitest"
|
|
},
|
|
"author": "atomiks",
|
|
"license": "MIT",
|
|
"bugs": "https://github.com/floating-ui/floating-ui",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/floating-ui/floating-ui.git",
|
|
"directory": "packages/dom"
|
|
},
|
|
"homepage": "https://floating-ui.com",
|
|
"keywords": [
|
|
"tooltip",
|
|
"popover",
|
|
"dropdown",
|
|
"menu",
|
|
"popup",
|
|
"positioning"
|
|
],
|
|
"dependencies": {
|
|
"@floating-ui/core": "^1.4.2",
|
|
"@floating-ui/utils": "^0.1.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.2.14",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-router-dom": "^6.14.0"
|
|
}
|
|
}
|
|
|