@alijunior/acbr-api-sdk-node 2.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +295 -0
- package/dist/index.d.mts +16322 -0
- package/dist/index.d.ts +16322 -0
- package/dist/index.js +1872 -0
- package/dist/index.mjs +1830 -0
- package/package.json +77 -0
package/package.json
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@alijunior/acbr-api-sdk-node",
|
|
3
|
+
"version": "2.3.4",
|
|
4
|
+
"description": "SDK em Typescript para comunicação com a api Acbr Api",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"acbr",
|
|
7
|
+
"api",
|
|
8
|
+
"acbrapi",
|
|
9
|
+
"acbr-api",
|
|
10
|
+
"acbr api",
|
|
11
|
+
"sdk",
|
|
12
|
+
"node",
|
|
13
|
+
"typescript",
|
|
14
|
+
"nfe",
|
|
15
|
+
"nfce"
|
|
16
|
+
],
|
|
17
|
+
"homepage": "https://github.com/alijuniorbr/acbr-api-sdk-node#readme",
|
|
18
|
+
"bugs": {
|
|
19
|
+
"url": "https://github.com/alijuniorbr/acbr-api-sdk-node/issues"
|
|
20
|
+
},
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "git+https://github.com/alijuniorbr/acbr-api-sdk-node.git"
|
|
24
|
+
},
|
|
25
|
+
"license": "MIT",
|
|
26
|
+
"author": {
|
|
27
|
+
"name": "Junior Ali",
|
|
28
|
+
"email": "alijunior@gmail.com",
|
|
29
|
+
"url": "https://github.com/alijuniorbr"
|
|
30
|
+
},
|
|
31
|
+
"type": "commonjs",
|
|
32
|
+
"main": "./dist/index.js",
|
|
33
|
+
"module": "./dist/index.mjs",
|
|
34
|
+
"types": "./dist/index.d.ts",
|
|
35
|
+
"exports": {
|
|
36
|
+
".": {
|
|
37
|
+
"types": "./dist/index.d.ts",
|
|
38
|
+
"import": "./dist/index.mjs",
|
|
39
|
+
"require": "./dist/index.js"
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"files": [
|
|
43
|
+
"LICENSE",
|
|
44
|
+
"README.md",
|
|
45
|
+
"dist"
|
|
46
|
+
],
|
|
47
|
+
"sideEffects": false,
|
|
48
|
+
"engines": {
|
|
49
|
+
"node": ">=18"
|
|
50
|
+
},
|
|
51
|
+
"publishConfig": {
|
|
52
|
+
"access": "public"
|
|
53
|
+
},
|
|
54
|
+
"dependencies": {
|
|
55
|
+
"axios": "^1.13.2"
|
|
56
|
+
},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@antfu/eslint-config": "^7.5.0",
|
|
59
|
+
"@types/node": "^24.10.1",
|
|
60
|
+
"dotenv-cli": "^11.0.0",
|
|
61
|
+
"eslint": "^10.0.2",
|
|
62
|
+
"eslint-plugin-format": "^2.0.0",
|
|
63
|
+
"tsup": "^8.5.1",
|
|
64
|
+
"tsx": "^4.20.6",
|
|
65
|
+
"typescript": "^5.9.3"
|
|
66
|
+
},
|
|
67
|
+
"scripts": {
|
|
68
|
+
"build": "tsup index.ts --format esm,cjs --dts --out-dir dist --clean",
|
|
69
|
+
"clean": "rm -rf dist",
|
|
70
|
+
"test": "dotenv -e .env -- tsx ./run/acbr-api-run-example.ts",
|
|
71
|
+
"tree": "tree -a -I 'node_modules|.git|dist|build|coverage|.turbo|.next|.cache' > content-tree.txt",
|
|
72
|
+
"lint": "eslint .",
|
|
73
|
+
"lint:fix": "eslint . --fix",
|
|
74
|
+
"bump": "pnpm version patch --no-git-tag-version",
|
|
75
|
+
"headers": "tsx scripts/add-file-headers.ts"
|
|
76
|
+
}
|
|
77
|
+
}
|