-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
73 lines (73 loc) · 1.82 KB
/
package.json
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "svelte-floating-ui",
"description": "Svelte actions for working with floating ui",
"version": "1.5.9",
"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]>",
"keywords": [
"svelte",
"light",
"floating",
"floating-ui",
"sveltejs",
"svelte-floating-ui",
"svelte-floating",
"svelte-v3",
"svelte3"
],
"scripts": {
"dev": "vite dev",
"build": "vite build",
"package": "svelte-package",
"preview": "vite preview",
"prepare": "svelte-kit sync",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check --plugin-search-dir=. . && eslint .",
"format": "prettier --write --plugin-search-dir=. ."
},
"devDependencies": {
"@sveltejs/kit": "1.0.0-next.589",
"@sveltejs/package": "^1.0.2",
"@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.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.6.2",
"typescript": "^4.9.5",
"vite": "^4.4.11"
},
"type": "module",
"dependencies": {
"@floating-ui/core": "^1.5.0",
"@floating-ui/dom": "^1.5.3"
},
"exports": {
"./core": {
"import": "./core/index.js",
"svelte": "./core/index.js",
"types": "./core/index.d.ts"
},
"./dom": {
"import": "./dom/index.js",
"svelte": "./dom/index.js",
"types": "./dom/index.d.ts"
},
".": {
"import": "./index.js",
"svelte": "./index.js",
"types": "./index.d.ts"
}
}
}