mirror of
https://github.com/tauri-apps/tauri-action.git
synced 2026-01-31 00:35:20 +01:00
* fix: add custom file search for more consistent results. This fixes issues where the action used config files in deeply nested directories instead of the correct one in the upper levels. * update target to es2021 since we run on nodejs16 * add todo * globby test drive * globby di glob * cleanup * remove sort. add another change file * remove changefile tags
55 lines
1.4 KiB
JSON
55 lines
1.4 KiB
JSON
{
|
|
"name": "tauri-action",
|
|
"version": "0.4.2",
|
|
"description": "Tauri GitHub Action",
|
|
"contributors": [
|
|
"Tauri Programme within The Commons Conservancy"
|
|
],
|
|
"license": "MIT",
|
|
"main": "dist/index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "ncc build src/index.ts -o dist -m",
|
|
"lint": "eslint src/**",
|
|
"format": "prettier --write src/** action.yml README.md",
|
|
"format:check": "prettier --check src/** action.yml README.md"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/tauri-apps/tauri-action.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"tauri"
|
|
],
|
|
"dependencies": {
|
|
"@actions/core": "1.10.0",
|
|
"@actions/github": "5.1.1",
|
|
"@iarna/toml": "2.2.5",
|
|
"execa": "7.1.1",
|
|
"globby": "^13.2.2",
|
|
"json5": "2.2.3",
|
|
"lodash.merge": "^4.6.2",
|
|
"string-argv": "0.3.2",
|
|
"tslib": "2.6.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "16.18.39",
|
|
"@typescript-eslint/eslint-plugin": "6.2.0",
|
|
"@typescript-eslint/parser": "6.2.0",
|
|
"@vercel/ncc": "0.36.1",
|
|
"covector": "0.10.0",
|
|
"eslint": "8.45.0",
|
|
"eslint-config-prettier": "8.8.0",
|
|
"eslint-config-standard-with-typescript": "37.0.0",
|
|
"eslint-plugin-import": "2.27.5",
|
|
"eslint-plugin-n": "16.0.1",
|
|
"eslint-plugin-promise": "6.1.1",
|
|
"prettier": "2.8.8",
|
|
"typescript": "5.1.6"
|
|
},
|
|
"engines": {
|
|
"pnpm": ">=7.33.0"
|
|
}
|
|
}
|