@modyfi/vite-plugin-yaml
Version:
Import YAML files as JS objects 🔌
65 lines • 1.44 kB
JSON
{
"name": "@modyfi/vite-plugin-yaml",
"version": "1.1.1",
"description": "Import YAML files as JS objects 🔌",
"type": "module",
"author": {
"name": "Tony Ketcham",
"email": "tony@modyfi.io",
"url": "https://github.com/tonyketcham"
},
"license": "MIT",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./modules": {
"types": "./modules.d.ts"
}
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"types",
"*.d.ts"
],
"keywords": [
"vite",
"vite-plugin",
"yaml",
"yml",
"modyfi"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Modyfi/vite-plugin-yaml.git"
},
"bugs": {
"url": "https://github.com/Modyfi/vite-plugin-yaml/issues"
},
"homepage": "https://github.com/Modyfi/vite-plugin-yaml/tree/main/#readme",
"peerDependencies": {
"vite": ">=3.2.7"
},
"dependencies": {
"@rollup/pluginutils": "5.1.0",
"js-yaml": "4.1.0",
"tosource": "2.0.0-alpha.3"
},
"devDependencies": {
"@types/js-yaml": "4.0.9",
"c8": "8.0.1",
"tsup": "8.0.1",
"typescript": "5.3.3",
"vite": "5.0.13"
},
"scripts": {
"dev": "tsup --watch src",
"example:dev": "pnpm -C example run dev",
"example:build": "pnpm run build && pnpm -C example run build",
"build": "tsup"
}
}