-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.45 KB
/
package.json
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
{
"name": "@bruno-valero/gerencianet-sdk-typescript",
"version": "1.0.11",
"main": "./build/index.js",
"module": "./build/index.mjs",
"types": "./build/index.d.ts",
"scripts": {
"dev": "tsx watch src/dev.ts",
"types": "tsc --noEmit",
"lint": "eslint src --fix",
"build": "tsup src/index.ts --format esm,cjs --dts --out-dir build",
"patch": "npm version patch && git push origin --tags && git push origin dev && npm publish",
"minor": "npm version minor && git push origin --tags && git push origin dev && npm publish",
"major": "npm version major && git push origin --tags && git push origin dev && npm publish",
"git-add": "git add .",
"check": "run-s types lint",
"add": "run-s check build git-add",
"test": "vitest ./tests"
},
"publishConfig": {
"access": "public"
},
"author": {
"name": "Bruno Fernandes Valero",
"email": "[email protected]",
"url": "http://brunovalero.com.br"
},
"repository": {
"type": "git",
"url": "https://github.com/bruno-valero/gerencianet-sdk-typescript"
},
"files": [
"build/",
"README_IMAGES/",
"package.json",
"README.md",
"CHANGELOG.md"
],
"keywords": [
"bruno-valero",
"typescript",
"efipay",
"efibank",
"gerencianet",
"pagamentos",
"payment",
"sdk",
"integração",
"integration",
"api",
"bank slip",
"boleto bancario",
"credit card",
"cartao de credito",
"pix"
],
"license": "ISC",
"description": "Este pacote oferece uma SDK moderna para integrar a API da Gerencianet com TypeScript. Diferente da SDK oficial, esta versão foi desenvolvida com foco total no TypeScript, proporcionando segurança de tipos, melhor reportagem de erros e sugestões de código inteligentes.\n\n\n**Atenção**: O pacote está em desenvolvimento ativo. Atualmente, apenas a API de PIX para cobranças imediatas e cobranças com data limite está com a integração completa. Outras funcionalidades serão implementadas em futuras atualizações.",
"devDependencies": {
"@rocketseat/eslint-config": "^2.2.2",
"@types/node": "^22.2.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"tsup": "^8.2.4",
"tsx": "^4.17.0",
"typescript": "^5.5.4",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.0.5"
},
"dependencies": {
"axios": "^1.7.3",
"dayjs": "^1.11.12",
"remask": "^1.2.2",
"zod": "^3.23.8"
}
}