UNPKG

@inox-tools/content-utils

Version:

Utilities to work with content collections on an Astro project from an integration or library.

66 lines 1.55 kB
{ "name": "@inox-tools/content-utils", "version": "0.14.0", "description": "Utilities to work with content collections on an Astro project from an integration or library.", "keywords": [ "lifecycle", "astro-integration", "astro", "withastro", "content-collection", "utils" ], "repository": { "url": "https://github.com/Fryuni/inox-tools" }, "license": "MIT", "author": "Luiz Ferraz <luiz@lferraz.com>", "type": "module", "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "./runtime/*": { "types": "./dist/runtime/*.d.ts", "default": "./dist/runtime/*.js" } }, "files": [ "dist", "src", "virtual.d.ts" ], "dependencies": { "astro-integration-kit": "~0.20.0", "debug": "^4.4.3", "devalue": "^5.6.3", "estree-walker": "^3.0.3", "magic-string": "^0.30.21", "@inox-tools/modular-station": "^0.9.0", "@inox-tools/utils": "^1.1.1" }, "devDependencies": { "@types/debug": "^4.1.12", "@types/node": "^25.3.3", "@vitest/coverage-v8": "^4.0.18", "@vitest/ui": "^4.0.18", "astro": "^6.0.8", "jest-extended": "^7.0.0", "tsup": "8.5.1", "typescript": "^5.9.3", "vite": "^7.3.1", "vitest": "^4.0.18", "@inox-tools/astro-tests": "^1.0.0" }, "peerDependencies": { "astro": "^6" }, "scripts": { "build": "tsup", "dev": "tsup --watch", "prepublish": "pnpm run build", "test": "vitest run", "test:dev": "vitest" } }