livepasses 0.1.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 ADDED
@@ -0,0 +1,59 @@
1
+ {
2
+ "name": "livepasses",
3
+ "version": "0.1.0",
4
+ "description": "Official Node.js/TypeScript SDK for the Livepasses API - Digital wallet pass generation, management, and redemption",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.mjs",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": {
11
+ "types": "./dist/index.d.mts",
12
+ "default": "./dist/index.mjs"
13
+ },
14
+ "require": {
15
+ "types": "./dist/index.d.ts",
16
+ "default": "./dist/index.js"
17
+ }
18
+ }
19
+ },
20
+ "files": [
21
+ "dist"
22
+ ],
23
+ "scripts": {
24
+ "build": "tsup",
25
+ "dev": "tsup --watch",
26
+ "typecheck": "tsc --noEmit",
27
+ "test": "vitest run",
28
+ "test:watch": "vitest",
29
+ "prepublishOnly": "npm run build"
30
+ },
31
+ "keywords": [
32
+ "livepasses",
33
+ "wallet",
34
+ "apple-wallet",
35
+ "google-wallet",
36
+ "pass",
37
+ "digital-wallet",
38
+ "sdk",
39
+ "api"
40
+ ],
41
+ "author": "Livepasses <support@livepasses.com>",
42
+ "license": "MIT",
43
+ "repository": {
44
+ "type": "git",
45
+ "url": "https://github.com/livepasses/livepasses-node.git"
46
+ },
47
+ "homepage": "https://docs.livepasses.com",
48
+ "bugs": {
49
+ "url": "https://github.com/livepasses/livepasses-node/issues"
50
+ },
51
+ "engines": {
52
+ "node": ">=18.0.0"
53
+ },
54
+ "devDependencies": {
55
+ "tsup": "^8.0.0",
56
+ "typescript": "^5.5.0",
57
+ "vitest": "^2.0.0"
58
+ }
59
+ }