@levischuck/tiny-qr 0.0.2 → 0.0.4

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/README.md CHANGED
@@ -62,4 +62,7 @@ Generates a QR code from the given data.
62
62
 
63
63
  MIT Licensed.
64
64
 
65
- This code is largely derived from [qrcode-rust](https://github.com/kennytm/qrcode-rust) by kennytm, which provides an MIT and Apache 2 license to its code.
65
+ This code is largely derived from [qrcode-rust](https://github.com/kennytm/qrcode-rust) by kennytm, which provides an MIT and Apache 2 license to its code.
66
+
67
+ The word "QR Code" is registered trademark of DENSO WAVE INCORPORATED
68
+ http://www.denso-wave.com/qrcode/faqpatent-e.html
package/dist/mode.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { Version, Mode } from './types';
1
+ import { Version, Mode } from './types.ts';
2
2
  /** Computes the number of bits needed to encode the data length */
3
3
  export declare function modeLengthBitsCount(mode: Mode, version: Version): number;
4
4
  /** Computes the number of bits needed to encode data of a given length */
package/dist/version.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { EcLevel, Version } from './types';
1
+ 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 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@levischuck/tiny-qr",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "main": "./dist/index.js",
@@ -14,7 +14,8 @@
14
14
  },
15
15
  "repository": {
16
16
  "type": "git",
17
- "url": "git+https://github.com/levischuck/tiny-packages.git"
17
+ "url": "https://github.com/LeviSchuck/tiny-packages",
18
+ "directory": "packages/tiny-qr"
18
19
  },
19
20
  "publishConfig": {
20
21
  "access": "public"
@@ -31,7 +32,8 @@
31
32
  "scripts": {
32
33
  "build": "vite build",
33
34
  "prepublishOnly": "bun run build",
34
- "type-check": "bunx tsc --noEmit"
35
+ "type-check": "bunx tsc --noEmit",
36
+ "build:jsr": "echo Nothing to build"
35
37
  },
36
38
  "devDependencies": {
37
39
  "@types/bun": "^1.3.5"