diff --git a/presentation-generation-lib/.gitignore b/presentation-generation-lib/.gitignore new file mode 100644 index 0000000..d8b83df --- /dev/null +++ b/presentation-generation-lib/.gitignore @@ -0,0 +1 @@ +package-lock.json diff --git a/presentation-generation-lib/package.json b/presentation-generation-lib/package.json new file mode 100644 index 0000000..a67db42 --- /dev/null +++ b/presentation-generation-lib/package.json @@ -0,0 +1,25 @@ +{ + "name": "@universityofnicosia/unic-presentation-gen-library", + "version": "0.0.1", + "description": "A library and API for presentation creation using officegen", + "main": "src/lib/presentationManager.js", + "scripts": { + "start": "node src/app.js", + "test": "jest" + }, + "author": "HlexNC", + "license": "MIT", + "dependencies": { + "express": "^4.19.2", + "officegen": "^0.6.5", + "stream-buffers": "^3.0.2" + }, + "devDependencies": { + "jest": "^29.7.0" + }, + "publishConfig": { + "registry": "https://npm.pkg.github.com/@universityofnicosia" + } + } + + \ No newline at end of file