Stirling-PDF/server-node/package.json

35 lines
778 B
JSON
Raw Normal View History

2023-10-16 23:11:33 +02:00
{
"name": "@stirling-pdf/server-node",
"version": "0.0.0",
"description": "",
2023-10-16 23:11:33 +02:00
"main": "index.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
2023-11-14 20:22:37 +01:00
"dev": "nodemon"
2023-10-16 23:11:33 +02:00
},
"keywords": [],
2023-10-16 23:11:33 +02:00
"author": "",
"license": "ISC",
"dependencies": {
2023-10-26 20:53:02 +02:00
"@stirling-pdf/shared-operations": "*",
2023-10-19 19:46:23 +02:00
"@wasmer/wasmfs": "^0.12.0",
2023-10-20 02:10:03 +02:00
"archiver": "^6.0.1",
2023-10-19 19:46:23 +02:00
"express": "^4.18.2",
"express-fileupload": "^1.4.2",
"joi": "^17.11.0",
"jsqr": "^1.4.0",
2023-10-26 20:53:02 +02:00
"multer": "^1.4.5-lts.1",
"nodemon": "^3.0.1",
2023-10-26 20:53:02 +02:00
"pdf-lib": "^1.17.1"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/multer": "^1.4.10",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
2023-11-11 11:33:49 +01:00
},
"exports": "./dist/index.js",
"type": "module"
2023-10-16 23:11:33 +02:00
}