-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
60 lines (60 loc) · 1.46 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
{
"name": "facturajs",
"description": "Comunicación con los web services de AFIP utilizando nodejs.",
"author": "Emilio Astarita",
"licence": "MIT",
"version": "0.3.1",
"engines": {
"node": ">=6.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prettier": "prettier --write \"src/**/*.{md,json,ts}\"",
"clean": "rm -rf dist/*",
"prepare": "yarn prettier; yarn clean ; yarn build",
"build": "yarn run type:dts && yarn run build:main",
"build:main": "swc ./src -d ./dist",
"type:dts": "tsc --emitDeclarationOnly --project tsconfig.build.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emilioastarita/facturajs.git"
},
"bugs": {
"url": "git+https://github.com/emilioastarita/facturajs/issues"
},
"files": [
"dist/"
],
"keywords": [
"afip",
"factura",
"factura electrónica",
"wsfe",
"wsfev1",
"web service",
"soap",
"nodejs"
],
"dependencies": {
"debug": "^4.3.4",
"moment": "^2.29.4",
"node-forge": "^1.3.1",
"ntp-time-sync": "^0.3.0",
"soap": "^1.0.0",
"source-map-support": "^0.5.21",
"uniqid": "^5.4.0",
"xml2js": "^0.6.0"
},
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.69",
"@types/debug": "^4.1.8",
"@types/node-forge": "^1.3.3",
"@types/uniqid": "^5.3.2",
"@types/xml2js": "^0.4.11",
"prettier": "^3.0.0",
"typescript": "^5.1.6"
}
}