-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.5 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
{
"name": "@js4y/lock-scroll",
"version": "1.1.1",
"description": "A set of methods to lock scrolling within an element or an entire page on mobile devices, tablets and desktops.",
"author": "David Bukacek <https://github.com/bukacekd>",
"license": "MIT",
"homepage": "https://github.com/bukacekd/lock-scroll#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/bukacekd/lock-scroll.git"
},
"bugs": {
"url": "https://github.com/bukacekd/lock-scroll/issues"
},
"keywords": [
"andorid",
"body",
"desktop",
"ios",
"lock",
"mobile",
"modal",
"overflow",
"scroll",
"scrollbar",
"tablet",
"toggle"
],
"files": [
"dist/",
"images/"
],
"type": "module",
"types": "dist/index.d.ts",
"main": "dist/index.mjs",
"jsdelivr": "dist/index.js",
"unpkg": "dist/index.js",
"scripts": {
"build": "npm run lint && node esbuild.config.js && tsc",
"docs": "vite build --config src-docs/vite.config.js",
"docs:dev": "vite --config src-docs/vite.config.js --open",
"docs:preview": "vite preview --config src-docs/vite.config.js --open",
"lint": "eslint --ext .js,.ts src tests",
"test": "vitest run",
"test:dev": "vitest"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"happy-dom": "^14.3.9",
"typescript": "^5.1.6",
"vite": "^5.2.7",
"vitest": "^1.4.0"
}
}