UNPKG

11ty.ts

Version:

An Eleventy wrapper for type supported configuration.

67 lines 1.45 kB
{ "name": "11ty.ts", "version": "0.0.5", "license": "Apache-2.0", "description": "An Eleventy wrapper for type supported configuration.", "author": { "name": "Νίκος Σαβίδης", "email": "n.savvidis@gmx.com", "url": "https://x.com/niksavvidis" }, "keywords": [ "11ty", "defineConfig", "typescript", "typings", "eleventy", "types", "declarations", "wrapper" ], "repository": { "type": "git", "url": "https://github.com/panoply/e11ty.git", "directory": "packages/11ty.ts" }, "bugs": { "url": "https://github.com/panoply/e11ty/issues" }, "files": [ "dist", "LICENSE", "readme.md" ], "module": "./dist/index.mjs", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.mjs" }, "require": { "types": "./dist/index.d.ts", "default": "./dist/index.cjs" } }, "prettier": "@sissel/prettier-config", "eslintConfig": { "extends": "@sissel/eslint-config", "ignorePatterns": [ "dist" ] }, "devDependencies": { "chokidar": "^3.6.0", "type-fest": "^4.15.0" }, "peerDependencies": { "@11ty/eleventy": "^2.0.1" }, "scripts": { "dev": "tsup --watch", "build": "tsup --minify", "postversion": "pnpm bump", "test": "echo \"Error: no test specified\" && exit 1" } }