@ticketlayer/live 0.2.0 → 0.4.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/dist/version.d.ts CHANGED
@@ -3,5 +3,5 @@
3
3
  * Do not edit; do not commit.
4
4
  */
5
5
  export declare const SDK_NAME = "@ticketlayer/live";
6
- export declare const SDK_VERSION = "0.2.0";
6
+ export declare const SDK_VERSION = "0.4.0";
7
7
  //# sourceMappingURL=version.d.ts.map
package/dist/version.js CHANGED
@@ -3,5 +3,5 @@
3
3
  * Do not edit; do not commit.
4
4
  */
5
5
  export const SDK_NAME = "@ticketlayer/live";
6
- export const SDK_VERSION = "0.2.0";
6
+ export const SDK_VERSION = "0.4.0";
7
7
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ticketlayer/live",
3
- "version": "0.2.0",
3
+ "version": "0.4.0",
4
4
  "description": "Ticketlayer Live SDK - buyer-facing client (browser + React Native)",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -26,26 +26,14 @@
26
26
  "LICENSE"
27
27
  ],
28
28
  "sideEffects": false,
29
- "scripts": {
30
- "prebuild": "node scripts/write-version.mjs",
31
- "build": "tsc -p tsconfig.json",
32
- "build:cdn": "npm run build && esbuild dist/auto.js --bundle --format=iife --global-name=TicketlayerLive --platform=browser --target=es2019 --minify --sourcemap --outfile=dist/ticketlayer.js",
33
- "clean": "rm -rf dist src/version.ts",
34
- "lint": "eslint src --ext .ts",
35
- "format": "prettier --write \"src/**/*.ts\"",
36
- "docs:gen": "typedoc",
37
- "pretest": "npm run build",
38
- "test": "node --test test/*.test.mjs",
39
- "changeset": "changeset",
40
- "release": "changeset publish"
41
- },
42
29
  "repository": {
43
30
  "type": "git",
44
- "url": "git+https://github.com/ticketlayer/live-sdk.git"
31
+ "url": "git+https://github.com/ticketlayer/live.git",
32
+ "directory": "packages/live"
45
33
  },
46
34
  "homepage": "https://docs.ticketlayer.com/sdks/live",
47
35
  "bugs": {
48
- "url": "https://github.com/ticketlayer/live-sdk/issues"
36
+ "url": "https://github.com/ticketlayer/live/issues"
49
37
  },
50
38
  "keywords": [
51
39
  "ticketlayer",
@@ -57,24 +45,37 @@
57
45
  "author": "Ticketlayer",
58
46
  "license": "MIT",
59
47
  "engines": {
60
- "node": ">=18.0.0"
48
+ "node": ">=22.0.0"
61
49
  },
62
50
  "publishConfig": {
63
51
  "access": "public",
64
- "registry": "https://registry.npmjs.org/",
65
- "provenance": true
52
+ "registry": "https://registry.npmjs.org/"
66
53
  },
67
54
  "ticketlayer": {
68
55
  "spec": "1.0.0",
69
56
  "apiVersion": "2026-06-13",
70
57
  "generator": "backstage-sdk-tooling 0.1.0"
71
58
  },
59
+ "dependencies": {
60
+ "@ticketlayer/theme": "^0.1.0"
61
+ },
72
62
  "devDependencies": {
73
- "@changesets/cli": "^2.31.1",
74
63
  "@types/node": "^22.15.30",
75
64
  "esbuild": "^0.24.0",
76
65
  "typedoc": "^0.28.15",
77
66
  "typedoc-plugin-markdown": "^4.9.0",
78
67
  "typescript": "^5.8.3"
68
+ },
69
+ "scripts": {
70
+ "prebuild": "node scripts/write-version.mjs",
71
+ "build": "tsc -p tsconfig.json",
72
+ "build:cdn": "pnpm run build && esbuild dist/auto.js --bundle --format=iife --global-name=TicketlayerLive --platform=browser --target=es2019 --minify --sourcemap --outfile=dist/ticketlayer.js",
73
+ "clean": "rm -rf dist src/version.ts",
74
+ "predocs:gen": "node scripts/write-version.mjs",
75
+ "docs:gen": "typedoc",
76
+ "pretest": "pnpm run build",
77
+ "test": "node --test test/*.test.mjs",
78
+ "pretypecheck": "node scripts/write-version.mjs",
79
+ "typecheck": "tsc -p tsconfig.json --noEmit"
79
80
  }
80
- }
81
+ }