@a.nemreen/a11y 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,69 @@
1
+ {
2
+ "name": "@a.nemreen/a11y",
3
+ "version": "0.1.0",
4
+ "description": "Framework-agnostic accessibility tools widget — profiles, readable experience, visual filters. Works with Angular, React, Vue, and plain HTML.",
5
+ "author": {
6
+ "name": "Ahmed Nemreen",
7
+ "email": "a.nemreen@gmail.com",
8
+ "url": "https://nemreen.info"
9
+ },
10
+ "license": "MIT",
11
+ "type": "module",
12
+ "sideEffects": [
13
+ "*.css"
14
+ ],
15
+ "files": [
16
+ "dist",
17
+ "LICENSE",
18
+ "README.md"
19
+ ],
20
+ "main": "./dist/index.cjs",
21
+ "module": "./dist/index.js",
22
+ "types": "./dist/index.d.ts",
23
+ "exports": {
24
+ ".": {
25
+ "types": "./dist/index.d.ts",
26
+ "import": "./dist/index.js",
27
+ "require": "./dist/index.cjs"
28
+ },
29
+ "./styles.css": "./dist/styles.css"
30
+ },
31
+ "scripts": {
32
+ "build": "tsup && cp src/styles.css dist/styles.css",
33
+ "build:site": "node scripts/build-site.mjs",
34
+ "demo": "npm run build && npx --yes serve . -l 4173",
35
+ "prepublishOnly": "npm run build"
36
+ },
37
+ "keywords": [
38
+ "accessibility",
39
+ "a11y",
40
+ "wcag",
41
+ "widget",
42
+ "frontend",
43
+ "browser",
44
+ "typescript",
45
+ "angular",
46
+ "react",
47
+ "vue",
48
+ "vanilla",
49
+ "zero-dependency"
50
+ ],
51
+ "homepage": "https://nemreen.info/a11y",
52
+ "repository": {
53
+ "type": "git",
54
+ "url": "git+https://github.com/nemreen/a11y.git"
55
+ },
56
+ "bugs": {
57
+ "url": "https://github.com/nemreen/a11y/issues"
58
+ },
59
+ "engines": {
60
+ "node": ">=18"
61
+ },
62
+ "publishConfig": {
63
+ "access": "public"
64
+ },
65
+ "devDependencies": {
66
+ "tsup": "^8.0.0",
67
+ "typescript": "^5.3.0"
68
+ }
69
+ }