equall-cli 0.1.0 → 0.1.2

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 Bureau61
3
+ Copyright (c) 2026 Kevin Delval
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -24,6 +24,18 @@ equall scan .
24
24
  2 critical 2 serious 19 moderate 0 minor
25
25
  ```
26
26
 
27
+ ## Install
28
+
29
+ ```bash
30
+ npm install -g equall-cli
31
+ ```
32
+
33
+ Or run directly with npx:
34
+
35
+ ```bash
36
+ npx equall scan .
37
+ ```
38
+
27
39
  ## Why Equall?
28
40
 
29
41
  Accessibility tools today fall into two camps: dev tools that show violations without context (axe, Lighthouse), and enterprise platforms that cost $75K+/year (Deque, Siteimprove). Nothing in between.
@@ -93,7 +105,7 @@ Conformance (A / AA / AAA) is evaluated strictly against your `--level` target.
93
105
  ## Programmatic API
94
106
 
95
107
  ```typescript
96
- import { runScan } from 'equall'
108
+ import { runScan } from 'equall-cli'
97
109
 
98
110
  const result = await runScan({
99
111
  path: './my-project',