UNPKG

memdisk

Version:

A library and a CLI to create RAM disk on macOS and Linux.

55 lines 1.42 kB
{ "name": "memdisk", "version": "1.2.1", "description": "A library and a CLI to create RAM disk on macOS and Linux.", "homepage": "https://github.com/SukkaW/memdisk", "repository": { "type": "git", "url": "git+https://github.com/SukkaW/memdisk.git" }, "main": "./dist/index.cjs", "types": "./dist/index.d.ts", "bin": "./dist/cli.js", "files": [ "dist" ], "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.cjs" }, "./package.json": "./package.json" }, "keywords": [ "ramdisk", "memdisk" ], "author": "SukkaW <https://skk.moe>", "license": "MIT", "dependencies": { "@jsdevtools/ez-spawn": "^3.0.4", "gensync": "1.0.0-beta.2", "picocolors": "^1.0.1", "which": "^4.0.0" }, "devDependencies": { "@commander-js/extra-typings": "^12.1.0", "@eslint-sukka/node": "^6.2.3", "@types/gensync": "^1.0.4", "@types/node": "^20.16.3", "@types/which": "^3.0.4", "bumpp": "^9.5.2", "bunchee": "^5.4.0", "commander": "^12.1.0", "eslint": "^9.9.1", "eslint-config-sukka": "^6.2.3", "eslint-formatter-sukka": "^6.2.3", "typescript": "^5.5.4" }, "scripts": { "lint": "eslint --format=sukka .", "build": "bunchee -m --target es2018 --dts-bundle", "release": "bumpp -r --all --commit \"release: %s\" --tag \"%s\"" } }