cmake-action/package.json
Alfi Maulana 23aad7b33f
feat: use child process package to execute command (#391)
* feat: use `execFileSync` from `node:child_process` package

* feat: modify `configureProject` function to be sync

* feat: modify `buildProject` function to be sync

* feat: display command output to the parent output
2024-08-06 12:29:28 +08:00

29 lines
651 B
JSON

{
"name": "root",
"private": true,
"type": "module",
"scripts": {
"build": "ncc build src/index.ts",
"format": "prettier --write --cache . !dist !README.md",
"lint": "eslint",
"test": "jest"
},
"dependencies": {
"@actions/core": "^1.10.1"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.1.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^9.8.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.0"
},
"packageManager": "yarn@4.4.0"
}