mirror of
https://github.com/JonasKruckenberg/tauri-build.git
synced 2025-08-21 16:20:16 +00:00
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 16.10.5 to 17.0.31. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) --- updated-dependencies: - dependency-name: "@types/node" dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
48 lines
1.3 KiB
JSON
48 lines
1.3 KiB
JSON
{
|
|
"name": "tauri-build",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"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",
|
|
"test": "jest",
|
|
"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.9",
|
|
"execa": "^6.1.0",
|
|
"string-argv": "^0.3.1",
|
|
"tiny-glob": "^0.2.9",
|
|
"@tauri-apps/cli-win32-x64-msvc": "1.0.0-rc.9",
|
|
"@tauri-apps/cli-darwin-x64": "1.0.0-rc.9",
|
|
"@tauri-apps/cli-linux-x64-gnu": "1.0.0-rc.9"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^17.0.31",
|
|
"@typescript-eslint/parser": "^5.8.1",
|
|
"@vercel/ncc": "^0.31.1",
|
|
"eslint": "^7.32.0",
|
|
"eslint-plugin-github": "^4.3.2",
|
|
"js-yaml": "^4.1.0",
|
|
"prettier": "2.5.1",
|
|
"typescript": "^4.4.4"
|
|
}
|
|
}
|