@projetoacbr/acbrlib-base-node 1.0.0

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.
Files changed (2) hide show
  1. package/README.md +17 -0
  2. package/package.json +32 -0
package/README.md ADDED
@@ -0,0 +1,17 @@
1
+ ACBrLib Node Comum
2
+ ----
3
+
4
+
5
+ É uma Classe Base que expõe os métodos da **ACBrLibComum** e outros recursos (ACBrBuffer) (tal como existe no [Android](https://svn.code.sf.net/p/acbr/code/trunk2/Projetos/ACBrLib/Android/Comum/)) para que sejam reaproveitadas em classes Filhas (CEP,NFe,MDFe...)
6
+
7
+ + LIB_Inicializar
8
+ + LIB_Finalizar
9
+ + LIB_UltimoRetorno
10
+ + LIB_Nome
11
+ + LIB_Versao
12
+ + LIB_ConfigGravar
13
+ + LIB_ConfigGravarValor
14
+ + LIB_ConfigLer
15
+ + LIB_ConfigLerValor
16
+ + LIB_ConfigImportar
17
+
package/package.json ADDED
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "@projetoacbr/acbrlib-base-node",
3
+ "version": "1.0.0",
4
+ "description": "",
5
+ "main": "dist/src/index.js",
6
+ "types": "dist/src/index.d.ts",
7
+ "files": [
8
+ "/dist"
9
+ ],
10
+ "scripts": {
11
+ "test": "echo \"Error: no test specified\" && exit 1",
12
+ "build": "npx tsc",
13
+ "local-release": "npm run build && npm link"
14
+ },
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "git+https://github.com/doszapro/acbrlib-comum.git"
18
+ },
19
+ "author": "",
20
+ "license": "ISC",
21
+ "bugs": {
22
+ "url": "https://github.com/doszapro/acbrlib-comum/issues"
23
+ },
24
+ "homepage": "https://github.com/doszapro/acbrlib-comum#readme",
25
+ "devDependencies": {
26
+ "@types/node": "^22.5.4",
27
+ "typescript": "^5.5.4"
28
+ },
29
+ "dependencies": {
30
+ "koffi": "^2.12.0"
31
+ }
32
+ }