609b022547
- Replace Rolldown with esbuild for more reliable bundling - Configure esbuild to output CommonJS to index.cjs - Update action.yml to use index.cjs as main entry point - Remove problematic rolldown.config.js - Bump version to 0.0.3 - ESM codebase with CJS build output for GitHub Actions compatibility
34 lines
756 B
JSON
34 lines
756 B
JSON
{
|
|
"name": "action",
|
|
"version": "0.0.3",
|
|
"main": "index.js",
|
|
"directories": {
|
|
"example": "examples"
|
|
},
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"build": "node esbuild.config.js",
|
|
"dev": "node esbuild.config.js --watch"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.10.0",
|
|
"esbuild": "^0.25.9",
|
|
"typescript": "^5.3.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/pullfrog/pullfrog.git"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"type": "module",
|
|
"bugs": {
|
|
"url": "https://github.com/pullfrog/pullfrog/issues"
|
|
},
|
|
"homepage": "https://github.com/pullfrog/pullfrog#readme"
|
|
}
|