@levischuck/tiny-qr 0.0.5 → 0.0.8

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/dist/version.d.ts CHANGED
@@ -2,6 +2,6 @@ import { EcLevel, Version } from './types.ts';
2
2
  /** Gets the width of the QR code in modules */
3
3
  export declare function versionWidth(version: Version): number;
4
4
  /** Gets the number of bits needed to encode the mode indicator */
5
- export declare function versionModeBitsCount(version: Version): number;
5
+ export declare function versionModeBitsCount(_version: Version): number;
6
6
  /** Fetches a value from a lookup table */
7
7
  export declare function versionFetch<T>(version: Version, ecLevel: EcLevel, table: ReadonlyArray<readonly [T, T, T, T]>): T;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@levischuck/tiny-qr",
3
- "version": "0.0.5",
3
+ "version": "0.0.8",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "main": "./dist/index.js",
@@ -32,7 +32,8 @@
32
32
  "scripts": {
33
33
  "build": "vite build",
34
34
  "type-check": "bunx tsc --noEmit",
35
- "build:jsr": "echo Nothing to build"
35
+ "build:jsr": "echo Nothing to build",
36
+ "lint": "oxlint -c ../../.oxlintrc.json"
36
37
  },
37
38
  "devDependencies": {
38
39
  "@types/bun": "^1.3.5"