tauri-build/package.json
2022-05-09 09:30:07 +02:00

45 lines
1.2 KiB
JSON

{
"name": "tauri-build",
"version": "0.1.2-beta.3",
"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.6.0",
"@tauri-apps/cli": "1.0.0-rc.10",
"string-argv": "^0.3.1",
"tiny-glob": "^0.2.9",
"@tauri-apps/cli-win32-x64-msvc": "1.0.0-rc.10",
"@tauri-apps/cli-darwin-x64": "1.0.0-rc.10",
"@tauri-apps/cli-linux-x64-gnu": "1.0.0-rc.10"
},
"devDependencies": {
"@types/node": "16.11.33",
"@typescript-eslint/parser": "5.22.0",
"@vercel/ncc": "0.33.4",
"eslint": "8.15.0",
"eslint-plugin-github": "4.3.6",
"js-yaml": "4.1.0",
"prettier": "2.6.2",
"typescript": "4.6.4"
}
}