fp-lib/package.json

39 lines
768 B
JSON

{
"name": "fp-lib",
"version": "1.0.1",
"description": "Zero-dependency functional programming library optimized for Bun",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "bun run clean && tsc",
"clean": "rm -rf dist",
"test": "bun test",
"prepublishOnly": "bun run build"
},
"keywords": [
"functional programming",
"bun",
"typescript",
"option",
"either",
"list"
],
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"typescript": "^5.0.4",
"@types/bun": "latest"
},
"engines": {
"bun": ">=1.0.0"
},
"files": [
"dist/**/*"
],
"exports": {
".": "./dist/index.js",
"./bun": "./dist/bun/index.js"
}
}