-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 905 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 905 Bytes
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
{
"name": "pdf-sign",
"version": "1.0.0",
"description": "PDF signing tool",
"author": "Stephen Lee",
"license": "MIT",
"keywords": [],
"main": "src/main.ts",
"scripts": {
"build": "tsc",
"start": "ts-node src/main.ts",
"start:prod": "node dist/main",
"start:dev": "nodemon --watch src --ext ts,js --ignore node_modules --exec ts-node src/main.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@azure/identity": "^3.3.2",
"@azure/keyvault-certificates": "^4.7.0",
"@azure/keyvault-keys": "^4.7.2",
"@azure/keyvault-secrets": "^4.7.0",
"@signpdf/utils": "^3.0.0",
"dotenv": "^16.3.1",
"node-forge": "^1.3.1",
"pdf-lib": "^1.17.1",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/node-forge": "^1.3.8",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}