forked from qvapay/client-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.55 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.55 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
{
"name": "qvapay-sdk",
"version": "0.0.1",
"packageManager": "pnpm@10.13.1+sha512.37ebf1a5c7a30d5fabe0c5df44ee8da4c965ca0c5af3dbab28c3a1681b70a256218d05c81c9c0dcf767ef6b8551eb5b960042b9ed4300c59242336377e01cfad",
"description": "Este proyecto es un SDK en TypeScript para Node.js que permite interactuar con la API de QvaPay.",
"type": "module",
"license": "MIT",
"repository": "https://github.com/qvacode/client-node.git",
"author": "qvacode <d3vqva@gmail.com>",
"files": [
"/dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsdown",
"lint": "eslint --cache .",
"lint:fix": "pnpm run lint --fix",
"format": "prettier --cache --write .",
"dev": "tsdown --watch",
"prepublishOnly": "npm run build",
"release": "bumpp && pnpm publish",
"p": "npm publish",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui --coverage.enabled=true",
"test:coverage": "vitest --coverage",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"axios": "^1.11.0",
"dotenv": "^17.2.0",
"form-data": "^4.0.4"
},
"devDependencies": {
"@sxzz/eslint-config": "^7.0.6",
"@sxzz/prettier-config": "^2.2.3",
"@types/node": "^24.0.15",
"@vitest/coverage-v8": "3.2.4",
"@vitest/ui": "3.2.4",
"axios-mock-adapter": "^2.1.0",
"bumpp": "^10.2.0",
"eslint": "^9.31.0",
"prettier": "^3.6.2",
"tsdown": "^0.12.9",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"prettier": "@sxzz/prettier-config"
}