qrflow 1.0.0 → 1.0.1

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.
Files changed (1) hide show
  1. package/package.json +31 -6
package/package.json CHANGED
@@ -1,11 +1,30 @@
1
1
  {
2
2
  "name": "qrflow",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "QRFLOW.codes API client: create QR codes, change where dynamic codes point after printing, print them on your own domain, read scan analytics, verify webhooks. Zero dependencies; Node, Bun, Deno, Workers.",
5
- "keywords": ["qr", "qr code", "qr code generator", "dynamic qr code", "qr code api", "qrcode", "short link", "scan analytics", "webhooks", "mcp", "qrflow"],
5
+ "keywords": [
6
+ "qr",
7
+ "qr code",
8
+ "qr code generator",
9
+ "dynamic qr code",
10
+ "qr code api",
11
+ "qrcode",
12
+ "short link",
13
+ "scan analytics",
14
+ "webhooks",
15
+ "mcp",
16
+ "qrflow"
17
+ ],
6
18
  "homepage": "https://qrflow.codes/developers",
7
- "bugs": { "url": "https://github.com/nativecodeapps/qrflow/issues", "email": "hello@qrflow.codes" },
8
- "repository": { "type": "git", "url": "git+https://github.com/nativecodeapps/qrflow.git", "directory": "sdk/node" },
19
+ "bugs": {
20
+ "url": "https://github.com/nativecodeapps/qrflow-sdk/issues",
21
+ "email": "hello@qrflow.codes"
22
+ },
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "git+https://github.com/nativecodeapps/qrflow-sdk.git",
26
+ "directory": "typescript"
27
+ },
9
28
  "license": "MIT",
10
29
  "author": "Native Code LLC (https://qrflow.codes)",
11
30
  "type": "module",
@@ -21,8 +40,14 @@
21
40
  "default": "./dist/esm/index.js"
22
41
  }
23
42
  },
24
- "files": ["dist", "README.md", "LICENSE"],
25
- "engines": { "node": ">=18" },
43
+ "files": [
44
+ "dist",
45
+ "README.md",
46
+ "LICENSE"
47
+ ],
48
+ "engines": {
49
+ "node": ">=18"
50
+ },
26
51
  "scripts": {
27
52
  "build": "rm -rf dist && tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json && echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json",
28
53
  "test": "node --test \"test/**/*.test.ts\"",