-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.07 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.07 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
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@volverjs/satispay-node-sdk",
"version": "0.0.0",
"packageManager": "pnpm@10.24.0",
"description": "(Unofficial) Satispay GBusiness Node.js API SDK",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"satispay-keygen": "./dist/bin/satispay-keygen.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"sideEffects": false,
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"prepublishOnly": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:e2e": "vitest run tests/e2e",
"test:e2e:watch": "vitest tests/e2e",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": [
"satispay",
"gbusiness",
"api",
"sdk",
"typescript",
"nodejs",
"deno",
"bun",
"zero-dependencies",
"payment",
"fetch"
],
"author": "Volver",
"license": "MIT",
"homepage": "https://www.npmjs.com/package/@volverjs/satispay-node-sdk",
"repository": {
"type": "git",
"url": "https://github.com/volverjs/satispay-node-sdk"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.1",
"@vitest/coverage-v8": "^4.0.15",
"@vitest/ui": "^4.0.15",
"dotenv": "^17.2.3",
"eslint": "^9.39.1",
"eslint-plugin-vitest": "^0.5.4",
"prettier": "^3.7.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1",
"vite": "^7.2.6",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.15"
}
}