esm-fix/package.json
autocommit 349d54e64b
Some checks failed
Build and Publish / build-and-publish (push) Failing after 39s
deps-upgrade(config): ⬆️ Update configuration dependencies to latest stable versions
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-06-10 08:40:52 -07:00

44 lines
873 B
JSON

{
"name": "@lilith/esm-fix",
"version": "1.0.0",
"description": "Post-compile tool to add .js extensions to ESM imports",
"type": "module",
"bin": {
"esm-fix": "./dist/index.js"
},
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"prepublishOnly": "bun run build",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist"
},
"keywords": [
"esm",
"imports",
"extensions",
"nodejs",
"typescript"
],
"author": "lilith-platform",
"license": "MIT",
"devDependencies": {
"@lilith/configs": "^2.4.0",
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"tsup": "^8.5.1"
},
"publishConfig": {
"registry": "http://forge.black.lan/api/packages/lilith/npm/"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
}
}