{ "name": "multicrypt", "version": "0.2.0", "description": "A library for multi-key reversible encryption", "main": "lib/index.js", "types": "lib/index.d.ts", "directories": { "lib": "lib" }, "scripts": { "build": "pnpm run lint && rimraf lib && tsc", "app": "pnpm run build && node lib/index.js", "prepare": "pnpm run build", "lint": "eslint . --ext .ts", "lint:fix": "eslint --fix . --ext .ts" }, "files": [ "lib/**/*" ], "prepare": "pnpm run build", "postversion": "git push && git push --tags", "repository": { "type": "git", "url": "https://code.garrettmills.dev/garrettmills/multicrypt" }, "author": "Garrett Mills ", "license": "MIT", "devDependencies": { "@typescript-eslint/eslint-plugin": "^5.4.0", "@typescript-eslint/parser": "^5.4.0", "eslint": "^8.2.0" }, "dependencies": { "@types/rimraf": "^3.0.2", "@types/uuid": "^8.3.3", "dotenv": "^10.0.0", "mkdirp": "^1.0.4", "rimraf": "^3.0.2", "ts-node": "^10.4.0", "typescript": "^4.5.2", "uuid": "^8.3.2" } }