UNPKG

verdaccio-memory

Version:

Storage implementation in memory

65 lines 1.51 kB
{ "name": "verdaccio-memory", "version": "10.5.1", "description": "Storage implementation in memory", "keywords": [ "memory", "plugin", "storage", "verdaccio" ], "homepage": "https://verdaccio.org", "bugs": { "url": "https://github.com/verdaccio/verdaccio/issues" }, "license": "MIT", "author": "Juan Picado <juanpicado19@gmail.com>", "repository": { "type": "https", "url": "https://github.com/verdaccio/verdaccio", "directory": "packages/plugins/memory" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/verdaccio" }, "files": [ "lib/" ], "main": "./lib/index.js", "module": "./lib/index.mjs", "types": "./lib/index.d.ts", "exports": { ".": { "import": { "types": "./lib/index.d.ts", "default": "./lib/index.mjs" }, "require": { "types": "./lib/index.d.ts", "default": "./lib/index.js" } }, "./lib/*": "./lib/*" }, "dependencies": { "memory-fs": "0.5.0", "@verdaccio/core": "8.2.1", "@verdaccio/streams": "10.3.0" }, "devDependencies": { "vite": "8.0.16", "vitest": "4.1.4", "@verdaccio/types": "13.0.5" }, "engines": { "node": ">=22" }, "scripts": { "clean": "rimraf ./lib", "test": "vitest run", "build": "vite build && tsc --emitDeclarationOnly -p tsconfig.build.json", "type-check": "tsc --noEmit -p tsconfig.build.json", "watch": "vite build --watch" } }