mirror of
https://github.com/project-gauntlet/gauntlet.git
synced 2025-12-23 10:35:53 +00:00
20 lines
649 B
JSON
20 lines
649 B
JSON
{
|
|
"name": "@project-gauntlet/scenario-runner-cli",
|
|
"scripts": {
|
|
"build-this": "tsc --noEmit && rollup --config rollup.config.ts --configPlugin typescript",
|
|
"run-scenarios": "npm run build-this && node dist/main.js run-scenarios",
|
|
"run-screenshot-gen": "npm run build-this && node dist/main.js run-screenshot-gen"
|
|
},
|
|
"type": "module",
|
|
"dependencies": {
|
|
"commander": "^11.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-commonjs": "^25.0.7",
|
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
"@rollup/plugin-typescript": "^11.1.5",
|
|
"@types/node": "^18.19.67",
|
|
"tslib": "^2.6.2",
|
|
"typescript": "^5.7.2"
|
|
}
|
|
}
|