-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.82 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": "@blindpay/node",
"version": "4.1.1",
"description": "Official Node.js SDK for Blindpay API - Stablecoin API for global payments",
"keywords": [
"blindpay",
"payments",
"api",
"sdk",
"global-payments",
"payment-processing"
],
"homepage": "https://github.com/blindpaylabs/blindpay-node",
"author": "Blindpay <alves@blindpay.com> (https://blindpay.com/)",
"repository": {
"type": "git",
"url": "git+https://github.com/blindpaylabs/blindpay-node.git"
},
"bugs": "https://github.com/blindpaylabs/blindpay-node/issues",
"engines": {
"node": ">=18.*"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"devDependencies": {
"@biomejs/biome": "2.2.2",
"@changesets/cli": "2.29.6",
"@types/node": ">=12.0.0",
"@vitest/coverage-v8": "3.2.4",
"tsup": "8.5.0",
"typescript": "5.9.2",
"vitest": "3.2.4",
"vitest-fetch-mock": "0.4.5"
},
"peerDependencies": {
"@types/node": ">=18.x.x"
},
"peerDependenciesMeta": {
"@types/node": {
"optional": true
}
},
"license": "MIT",
"files": [
"dist/**"
],
"scripts": {
"build": "tsup src/index.ts src/resources/ --format cjs,esm --dts",
"check-types": "tsc --noEmit",
"lint:check": "biome check .",
"lint:fix": "biome check --write .",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"packageManager": "bun@1.2.18",
"dependencies": {
"svix": "1.94.0"
}
}