Files
bun.sh/packages/bun-plugin-yaml/package.json
Colin McDonnell a52715597a Add plugins for yaml & RSC (#2888)
* WIP

* WIP

* Add yaml plugin

* Publish v0.0.1

* Updates

* Start RSC plugin - not finished

* Add readme

* Updates

* Add shell dirs for a few other plugins
2023-05-15 20:37:03 -07:00

30 lines
551 B
JSON

{
"name": "bun-plugin-yaml",
"version": "0.0.1",
"module": "index.ts",
"type": "module",
"types": "index.ts",
"exports": {
".": {
"import": "./index.ts",
"require": "./index.ts",
"default": "./index.js",
"types": "./modules.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"index.ts",
"tsconfig.json",
"package.json",
"modules.d.ts"
],
"devDependencies": {
"@types/js-yaml": "^4.0.5",
"bun-types": "canary"
},
"dependencies": {
"js-yaml": "^4.1.0"
}
}