@cross-deck/node 0.1.0 → 1.0.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cross-deck/node",
3
- "version": "0.1.0",
4
- "description": "Crossdeck server SDK for Node.js — secret-key access to entitlements, identity, telemetry, purchases, and audit reads.",
3
+ "version": "1.0.0",
4
+ "description": "Crossdeck server SDK for Node.js — verified subscriptions, entitlements, server-side error capture, and product telemetry in one client.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://cross-deck.com",
7
7
  "repository": {
@@ -17,6 +17,11 @@
17
17
  "import": "./dist/index.mjs",
18
18
  "require": "./dist/index.cjs"
19
19
  },
20
+ "./auto-events": {
21
+ "types": "./dist/auto-events/index.d.ts",
22
+ "import": "./dist/auto-events/index.mjs",
23
+ "require": "./dist/auto-events/index.cjs"
24
+ },
20
25
  "./package.json": "./package.json"
21
26
  },
22
27
  "files": [
@@ -35,8 +40,9 @@
35
40
  "test": "vitest run",
36
41
  "test:watch": "vitest",
37
42
  "test:coverage": "vitest run --coverage",
43
+ "test:e2e": "vitest run --config vitest.e2e.config.ts",
38
44
  "lint": "tsc --noEmit",
39
- "prepublishOnly": "npm run lint && npm test && npm run build"
45
+ "prepublishOnly": "npm run lint && npm test && npm run build && npm run test:e2e"
40
46
  },
41
47
  "devDependencies": {
42
48
  "@types/node": "^20.14.0",
@@ -52,6 +58,14 @@
52
58
  "subscriptions",
53
59
  "entitlements",
54
60
  "telemetry",
55
- "audit"
61
+ "audit",
62
+ "error-tracking",
63
+ "observability",
64
+ "express",
65
+ "fastify",
66
+ "lambda",
67
+ "firebase-functions",
68
+ "cloud-run",
69
+ "webhooks"
56
70
  ]
57
71
  }