mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +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
29 lines
539 B
JSON
29 lines
539 B
JSON
{
|
|
"name": "bun-plugin-server-components",
|
|
"version": "0.0.1-alpha.0",
|
|
"module": "index.ts",
|
|
"type": "module",
|
|
"types": "index.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./index.ts",
|
|
"require": "./index.ts",
|
|
"default": "./index.js"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"files": [
|
|
"index.ts",
|
|
"tsconfig.json",
|
|
"package.json",
|
|
"modules.d.ts"
|
|
],
|
|
"devDependencies": {
|
|
"@types/js-yaml": "^4.0.5"
|
|
},
|
|
"dependencies": {
|
|
"bun-types": "canary",
|
|
"js-yaml": "^4.1.0"
|
|
}
|
|
}
|