UNPKG

esbuild-yaml

Version:

An esbuild plugin, that allows imports of YAML files

78 lines (77 loc) 1.74 kB
{ "name": "esbuild-yaml", "version": "2.1.0", "description": "An esbuild plugin, that allows imports of YAML files", "type": "module", "author": { "name": "Lucas Nørgård", "email": "lucasnrgaard@gmail.com", "url": "https://luxass.dev" }, "packageManager": "pnpm@10.10.0", "license": "MIT", "homepage": "https://github.com/luxass/esbuild-yaml", "repository": { "type": "git", "url": "https://github.com/luxass/esbuild-yaml" }, "bugs": { "url": "https://github.com/luxass/esbuild-yaml/issues" }, "keywords": [ "esbuild", "plugin", "yaml", "yaml import", "yaml plugin", "yaml esbuild" ], "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.mjs" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } }, "./types": { "types": "./yaml.d.ts" }, "./package.json": "./package.json" }, "main": "dist/index.cjs", "module": "dist/index.mjs", "types": "dist/index.d.ts", "files": [ "dist", "yaml.d.ts" ], "scripts": { "build": "tsup", "dev": "tsup --watch", "test": "vitest run", "test:watch": "vitest", "lint": "eslint . --report-unused-disable-directives", "typecheck": "tsc --noEmit" }, "peerDependencies": { "esbuild": ">=0.19.0" }, "dependencies": { "yaml": "^2.7.1" }, "devDependencies": { "@luxass/eslint-config": "^4.18.1", "@types/node": "^20.17.5", "esbuild": "^0.25.3", "eslint": "^9.25.1", "eslint-plugin-format": "^1.0.1", "prettier": "^3.5.3", "tsup": "^8.4.0", "typescript": "^5.8.3", "vitest": "^3.1.2" } }