Files
archived-tauri-action/package.json
Fabian-Lars c5c0e27d68 refactor: Merge workspace into single package. (#362)
* refactor repo into one package

* take pnpm for a test drive

* add tslib again

* fix dist path in action.yml

* split up core script. add eslint

* don't early return artifacts on macos

* up node version

* update deps

* fix change files

* rebuild dist
2023-02-06 13:44:53 +01:00

48 lines
1.2 KiB
JSON

{
"name": "tauri-action",
"version": "0.3.1",
"description": "Tauri GitHub Action",
"author": "Lucas Nogueira <lucas@tauri.studio>",
"license": "MIT",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "ncc build src/index.ts -o dist -m",
"lint": "eslint src/**"
},
"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": "6.1.0",
"glob-gitignore": "^1.0.14",
"ignore": "5.2.4",
"json5": "2.2.3",
"string-argv": "0.3.1",
"tslib": "2.5.0"
},
"devDependencies": {
"@types/node": "16.18.11",
"@typescript-eslint/eslint-plugin": "5.49.0",
"@typescript-eslint/parser": "5.49.0",
"@vercel/ncc": "0.36.1",
"covector": "0.8.0",
"eslint": "8.33.0",
"eslint-config-prettier": "8.6.0",
"eslint-config-standard-with-typescript": "33.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-n": "15.6.1",
"eslint-plugin-promise": "6.1.1",
"prettier": "2.8.3",
"typescript": "4.9.4"
}
}