Some checks failed
Build and Publish / build-and-publish (push) Failing after 39s
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
44 lines
873 B
JSON
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
|
|
}
|
|
}
|