-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.35 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "svelte-floating-attach",
"version": "1.0.7",
"description": "Svelte 5 attachment-based wrapper for @floating-ui/dom",
"license": "MIT",
"type": "module",
"sideEffects": false,
"scripts": {
"check": "svelte-check --tsconfig ./tsconfig.json",
"package": "svelte-package -o dist",
"prepublishOnly": "npm run package"
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"peerDependencies": {
"@floating-ui/dom": "^1.6.0",
"svelte": "^5.29.0"
},
"devDependencies": {
"@floating-ui/dom": "^1.7.5",
"@sveltejs/package": "^2.3.0",
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"svelte": "^5.53.0",
"svelte-check": "^4.1.0",
"typescript": "^5.8.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/harshmandan/svelte-floating-attach.git"
},
"homepage": "https://github.com/harshmandan/svelte-floating-attach",
"bugs": {
"url": "https://github.com/harshmandan/svelte-floating-attach/issues"
},
"keywords": [
"svelte",
"svelte5",
"floating-ui",
"popover",
"tooltip",
"dropdown",
"attachments",
"positioning"
]
}