tauri-build/package.json
dependabot[bot] 1a0f0933f7 build(deps): bump @actions/core from 1.9.0 to 1.9.1
Bumps [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) from 1.9.0 to 1.9.1.
- [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md)
- [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core)

---
updated-dependencies:
- dependency-name: "@actions/core"
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-08-16 12:04:59 +02:00

45 lines
1.2 KiB
JSON

{
"name": "tauri-build",
"version": "1.3.0",
"description": "TypeScript template action",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JonasKruckenberg/tauri-build.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.9.1",
"@tauri-apps/cli": "1.4.0",
"@tauri-apps/cli-darwin-x64": "1.4.0",
"@tauri-apps/cli-linux-x64-gnu": "1.4.0",
"@tauri-apps/cli-win32-x64-msvc": "1.4.0",
"string-argv": "^0.3.1",
"tiny-glob": "^0.2.9"
},
"devDependencies": {
"@types/node": "18.17.14",
"@typescript-eslint/parser": "5.59.9",
"@vercel/ncc": "0.36.1",
"eslint": "8.42.0",
"eslint-plugin-github": "4.8.0",
"js-yaml": "4.1.0",
"prettier": "2.8.8",
"typescript": "5.1.3"
}
}