Files
speckle-automate-github-action/package.json
T
dependabot[bot] 2f71b18bd8 build(deps-dev): bump eslint-plugin-import from 2.29.1 to 2.31.0
Bumps [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import) from 2.29.1 to 2.31.0.
- [Release notes](https://github.com/import-js/eslint-plugin-import/releases)
- [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md)
- [Commits](https://github.com/import-js/eslint-plugin-import/compare/v2.29.1...v2.31.0)

---
updated-dependencies:
- dependency-name: eslint-plugin-import
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-10-07 17:01:55 +00:00

55 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.1",
"@lifeomic/attempt": "^3.0.3",
"node-fetch": "^3.3.2",
"zod": "^3.22.3"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^18.19.17",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.9.0",
"@vercel/ncc": "^0.38.1",
"@vitest/coverage-istanbul": "^1.6.0",
"eslint": "^8.56.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-filenames": "latest",
"eslint-plugin-github": "^4.10.1",
"eslint-plugin-i18n-text": "^1.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vitest": "^0.3.22",
"msw": "^2.3.0",
"prettier": "^3.2.5",
"typescript": "^5.2.2",
"vite": "^5.1.8",
"vitest": "^1.6.0"
}
}