c05a324919
Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 6.2.1 to 6.3.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.3.0/packages/eslint-plugin) --- updated-dependencies: - dependency-name: "@typescript-eslint/eslint-plugin" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
54 lines
1.8 KiB
JSON
54 lines
1.8 KiB
JSON
{
|
|
"name": "speckle-automate-github-action",
|
|
"author": "Speckle Systems",
|
|
"version": "0.0.0",
|
|
"description": "Speckle Automate Github Action",
|
|
"packageManager": "yarn@3.5.0",
|
|
"license": "Apache-2.0",
|
|
"main": "lib/main.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"all": "yarn run build && yarn run prettier:check && yarn run lint && yarn run package",
|
|
"build": "tsc -p tsconfig.json",
|
|
"build:image": "docker build -t speckle/speckle-automate-github-action:local .",
|
|
"lint": "eslint src/**/*.ts",
|
|
"package": "ncc build --target es2020 --source-map --license licenses.txt -o dist/action src/main.ts",
|
|
"precommit": "pre-commit run --all-files",
|
|
"prettier:check": "prettier --check '**/*.ts'",
|
|
"prettier:fix": "prettier --write '**/*.ts'",
|
|
"test": "vitest --run --coverage",
|
|
"test:watch": "vitest"
|
|
},
|
|
"engines": {
|
|
"node": "^16.19.1"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.0",
|
|
"@lifeomic/attempt": "^3.0.3",
|
|
"node-fetch": "^3.3.2",
|
|
"zod": "^3.21.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/js-yaml": "^4.0.5",
|
|
"@types/node": "^18.17.4",
|
|
"@typescript-eslint/eslint-plugin": "^6.3.0",
|
|
"@typescript-eslint/parser": "^6.3.0",
|
|
"@vercel/ncc": "^0.36.1",
|
|
"@vitest/coverage-istanbul": "^0.34.1",
|
|
"eslint": "^8.46.0",
|
|
"eslint-import-resolver-typescript": "^3.5.5",
|
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
"eslint-plugin-filenames": "latest",
|
|
"eslint-plugin-github": "^4.9.2",
|
|
"eslint-plugin-i18n-text": "^1.0.1",
|
|
"eslint-plugin-import": "^2.28.0",
|
|
"eslint-plugin-no-only-tests": "^3.1.0",
|
|
"eslint-plugin-prettier": "^5.0.0",
|
|
"eslint-plugin-vitest": "^0.2.8",
|
|
"prettier": "^3.0.1",
|
|
"typescript": "^5.1.6",
|
|
"vite": "^4.4.9",
|
|
"vitest": "^0.34.1"
|
|
}
|
|
}
|