-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 937 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 937 Bytes
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
{
"name": "focus-patterns",
"version": "0.1.0",
"description": "Lightweight, drop-in JavaScript library for accessible UI patterns with automatic keyboard handling and ARIA semantics",
"main": "dist/focus-patterns.cjs.js",
"module": "dist/focus-patterns.esm.js",
"types": "dist/focus-patterns.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "tsc --watch",
"build": "tsc && npm run bundle",
"bundle": "echo 'Bundling step - add rollup later'",
"serve": "npx serve -p 3000",
"demo": "npm run serve",
"prepublishOnly": "npm run build"
},
"keywords": [
"accessibility",
"a11y",
"aria",
"focus",
"keyboard",
"tabs",
"patterns",
"wcag",
"vanilla-js"
],
"author": "Hein",
"license": "MIT",
"devDependencies": {
"typescript": "^5.3.3"
},
"repository": {
"type": "git",
"url": "https://github.com/yourusername/focus-patterns.git"
}
}