cmake-action/package.json
Alfi Maulana 9708492b8e
build: utilize Rollup to bundle action file (#404)
* build: utilize Rollup to bundle file

* build: bundle file with `.mjs` extension
2024-08-07 21:17:01 +08:00

32 lines
753 B
JSON

{
"name": "root",
"private": true,
"type": "module",
"scripts": {
"build": "rollup -c",
"format": "prettier --write --cache . !dist !README.md",
"lint": "eslint",
"test": "jest"
},
"dependencies": {
"catched-error-message": "^0.0.1"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@jest/globals": "^29.7.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"@types/node": "^22.1.0",
"eslint": "^9.8.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rollup": "^4.20.0",
"ts-jest": "^29.2.4",
"tslib": "^2.6.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.0"
},
"packageManager": "yarn@4.4.0"
}