parsec/package.json
2025-03-26 14:19:01 -04:00

30 lines
633 B
JSON

{
"name": "@endeavorance/parsec",
"version": "0.3.0",
"author": "Endeavorance",
"type": "module",
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"scripts": {
"clean": "rm -rf dist",
"fmt": "biome check --fix",
"build": "bun run clean && bun build ./src/index.ts --minify --outfile ./dist/index.js && bun --bunx tsc"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
}
}