mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
* 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
30 lines
551 B
JSON
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"
|
|
}
|
|
}
|