UNPKG

@hiraokahypertools/pst_to_msg

Version:

Convert a message in Outlook PST file into MSG format

65 lines (64 loc) 1.68 kB
{ "name": "@hiraokahypertools/pst_to_msg", "version": "0.1.0-alpha4", "description": "Convert a message in Outlook PST file into MSG format", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist", "README.md", "LICENSE" ], "engines": { "node": ">=14.0.0" }, "scripts": { "build": "tsc", "clean": "rimraf dist", "prepublishOnly": "npm run test && npm run clean && npm run build", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "test:ci": "jest --coverage --watchAll=false", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "format": "prettier --write src/**/*.ts", "format:check": "prettier --check src/**/*.ts" }, "keywords": [ "pst", "msg", "outlook", "email", "converter", "typescript" ], "repository": { "type": "https", "url": "https://github.com/HiraokaHyperTools/pst_to_msg.git" }, "bugs": { "url": "https://github.com/HiraokaHyperTools/pst_to_msg/issues" }, "homepage": "https://github.com/HiraokaHyperTools/pst_to_msg", "author": "kenjiuno", "license": "MIT", "private": false, "devDependencies": { "@types/jest": "^29.0.0", "@types/node": "^24.2.1", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "eslint": "^8.0.0", "jest": "^29.0.0", "prettier": "^3.0.0", "rimraf": "^5.0.0", "ts-jest": "^29.0.0", "typedoc": "^0.28.10", "typescript": "^5.0.0" }, "dependencies": { "@hiraokahypertools/pst-extractor": "^0.1.0-alpha.22", "@kenjiuno/msgreader": "^1.25.0-beta1" } }