-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@passmint/node",
"version": "0.3.0",
"description": "Official Node.js SDK for the Passmint API.",
"type": "module",
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": ["dist", "LICENSE", "README.md"],
"sideEffects": false,
"scripts": {
"build": "tsdown",
"test": "vitest run --typecheck",
"test:watch": "vitest --typecheck",
"test:ecosystem": "node ecosystem-tests/run.mjs",
"type-check": "tsc --noEmit",
"lint": "biome check .",
"format": "biome format --write .",
"attw": "attw --pack . --profile esm-only",
"publint": "publint",
"clean": "rm -rf dist .turbo",
"changeset": "changeset",
"version-packages": "changeset version && node scripts/sync-version.mjs && pnpm format",
"release": "changeset publish"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.2",
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.27.11",
"@types/node": "^22.10.5",
"publint": "^0.3.2",
"tsdown": "^0.10.1",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"keywords": [
"passmint",
"apple-wallet",
"google-wallet",
"pkpass",
"wallet",
"pass",
"sdk",
"node"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/getpassmint/passmint-node.git"
},
"homepage": "https://github.com/getpassmint/passmint-node#readme",
"bugs": {
"url": "https://github.com/getpassmint/passmint-node/issues"
}
}