UNPKG

omnichron

Version:

Unified interface for web archive providers

65 lines 1.53 kB
{ "name": "omnichron", "version": "0.3.1", "description": "Unified interface for web archive providers", "license": "MIT", "author": "oritwoen", "homepage": "https://github.com/oritwoen/omnichron", "repository": { "type": "git", "url": "https://github.com/oritwoen/omnichron" }, "bugs": { "url": "https://github.com/oritwoen/omnichron/issues" }, "keywords": [ "archive", "web-archive", "wayback", "history", "commoncrawl", "permacc", "archive-today" ], "type": "module", "exports": { ".": "./dist/index.mjs" }, "main": "./dist/index.mjs", "types": "./dist/index.d.mts", "module": "./dist/index.mjs", "sideEffects": false, "files": [ "dist" ], "dependencies": { "ufo": "1.6.1", "c12": "3.0.3", "defu": "6.1.4", "ofetch": "1.4.1", "consola": "3.4.2", "unstorage": "1.15.0" }, "devDependencies": { "vitest": "3.1.1", "eslint": "9.25.0", "obuild": "0.0.4", "typescript": "5.8.3", "changelogen": "0.6.1", "eslint-config-unjs": "0.4.2", "@types/node": "22.14.1", "@vitest/coverage-v8": "3.1.1" }, "resolutions": { "omnichron": "link:." }, "scripts": { "dev": "vitest dev", "lint": "eslint .", "lint:fix": "eslint . --fix", "test": "pnpm lint && pnpm test:types && vitest run --coverage", "test:types": "tsc --noEmit --skipLibCheck", "build": "obuild src/index.ts", "release": "pnpm test && changelogen --release --push && pnpm publish" } }