37 lines
786 B
JSON
37 lines
786 B
JSON
{
|
|
"name": "bun-types",
|
|
"license": "MIT",
|
|
"types": "./index.d.ts",
|
|
"description": "Type definitions and documentation for Bun, an incredibly fast JavaScript runtime",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/oven-sh/bun",
|
|
"directory": "packages/bun-types"
|
|
},
|
|
"files": [
|
|
"./*.d.ts",
|
|
"./CLAUDE.md",
|
|
"./docs/*.md",
|
|
"./docs/*.mdx",
|
|
"./docs/**/*.md",
|
|
"./docs/**/*.mdx",
|
|
"./README.md",
|
|
"./vendor/**/*.d.ts"
|
|
],
|
|
"homepage": "https://bun.com",
|
|
"dependencies": {
|
|
"@types/node": "*"
|
|
},
|
|
"scripts": {
|
|
"prebuild": "echo $(pwd)",
|
|
"build": "bun scripts/build.ts",
|
|
"test": "tsc",
|
|
"fmt": "echo $(which biome) && biome format --write ."
|
|
},
|
|
"keywords": [
|
|
"bun",
|
|
"bun.js",
|
|
"types"
|
|
]
|
|
}
|