-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.09 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "@qawolf/upload-run-inputs-executable-action",
"version": "v2.0.0",
"private": false,
"sideEffects": false,
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf ./dist && node esbuild.mjs",
"gen": "npm run build",
"lint:ci": "npm run lint:non-fixable; NON_FIXABLE_EXIT=$?; npm run lint:fixable && exit $NON_FIXABLE_EXIT",
"lint:dev": "npm run lint:fixable",
"lint:fixable": "eslint . --ext cjs,cts,js,jsx,mjs,ts,tsx --fix --quiet && prettier --log-level=warn --write .",
"lint:non-fixable": "dpdm --exit-code circular:1 --no-tree --no-warning --transform --include='.*' --exclude='/(dist|node_modules)/' '**/*'",
"tsc:check": "tsc"
},
"dependencies": {
"@actions/core": "^2.0.3",
"@qawolf/ci-sdk": "*",
"@qawolf/ci-utils": "*",
"tslib": "^2.5.3"
},
"devDependencies": {
"esbuild": "^0.25.9"
},
"engines": {
"node": ">=22.22.0 <25"
},
"nx": {
"targets": {
"gen": {
"dependsOn": [
"^build"
],
"outputs": [
"{projectRoot}/dist"
]
}
}
}
}