-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.11 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
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "scroll-focus-polyfill",
"version": "1.0.0",
"description": "A tiny polyfill for browsers that cannot focus a scrollable element (notably affecting keyboard accessibility of horizontally scrollable <pre> blocks in some environments).",
"type": "module",
"main": "./dist/scroll-focus-polyfill.umd.js",
"module": "./dist/scroll-focus-polyfill.mjs",
"browser": "./dist/scroll-focus-polyfill.js",
"exports": {
".": {
"browser": "./dist/scroll-focus-polyfill.js",
"import": "./dist/scroll-focus-polyfill.mjs",
"require": "./dist/scroll-focus-polyfill.umd.js",
"default": "./dist/scroll-focus-polyfill.js"
},
"./fn": {
"browser": "./dist/scroll-focus-polyfill.fn.js",
"import": "./dist/scroll-focus-polyfill.fn.mjs",
"require": "./dist/scroll-focus-polyfill.fn.umd.js",
"default": "./dist/scroll-focus-polyfill.fn.js"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "node build.mjs",
"preview": "vite preview",
"test": "npm run build && node test/build.test.js",
"lint": "npx @biomejs/biome check ./src",
"lint:fix": "npx @biomejs/biome check --write ./src",
"prepare": "lefthook install",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Th3S4mur41/scroll-focus-polyfill.git"
},
"keywords": [
"polyfill",
"scroll",
"focus",
"accessibility",
"a11y",
"keyboard",
"scrollable",
"pre"
],
"author": "Michaël Vanderheyden (Th3S4mur41) <https://th3s4mur41.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Th3S4mur41/scroll-focus-polyfill/issues"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"homepage": "https://github.com/Th3S4mur41/scroll-focus-polyfill#readme",
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@commitlint/cli": "^21.0.0",
"@commitlint/config-conventional": "^21.0.0",
"@th3s4mur41/release-config": "^2.0.4",
"lefthook": "^2.1.0",
"semantic-release": "^25.0.3",
"terser": "^5.46.0",
"vite": "^8.0.0"
}
}