-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.03 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
{
"name": "svelte-focus-on",
"version": "0.1.4",
"description": "Make your modal or full screen tasks WAI ARIA compatible",
"main": "dist/index.js",
"browser": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"author": "Pablo Berganza <[email protected]>",
"homepage": "https://github.com/pablo-abc/svelte-focus-on",
"repository": "github:pablo-abc/svelte-focus-on",
"license": "MIT",
"scripts": {
"dev": "rollup -cw",
"build": "rollup -c",
"prepublishOnly": "yarn build"
},
"files": [
"dist"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-replace": "^2.4.2",
"@types/body-scroll-lock": "^2.6.1",
"prettier": "^2.2.1",
"rollup": "^2.39.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^1.4.0",
"tslib": "^2.3.0",
"typescript": "^4.1.5"
},
"dependencies": {
"aria-hidden": "^1.1.2",
"body-scroll-lock": "^3.1.5",
"dom-focus-lock": "^1.0.4"
}
}