-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
40 lines (40 loc) · 907 Bytes
/
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
{
"name": "open-factura",
"version": "0.1.1",
"author": {
"name": "Miguel Langarano"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/miguelangarano/open-factura.git"
},
"scripts": {
"build": "tsup",
"start": "tsc ./src/index.ts",
"publish-changes": "npm run build & npm link & npm link open-factura & npm publish"
},
"devDependencies": {
"bun-types": "latest",
"ts-node": "^10.9.1",
"tsup": "^7.3.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@peculiar/webcrypto": "^1.4.3",
"@types/node-forge": "^1.3.9",
"node-fetch": "^3.3.2",
"node-forge": "^1.3.1",
"soap": "^1.0.0",
"xadesjs": "^2.4.4",
"xmlbuilder2": "^3.1.1"
}
}