tauri/cli/tauri.js/package.json
renovate[bot] 52a5a6727e
chore(deps) Update Tauri JS CLI (#1414)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-03-31 02:40:09 -03:00

112 lines
3.4 KiB
JSON

{
"name": "@tauri-apps/cli",
"version": "0.14.1",
"description": "Command line interface for building Tauri apps",
"bin": {
"tauri": "./bin/tauri.js"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/tauri"
},
"scripts": {
"build": "rimraf ./dist && webpack --progress",
"build-release": "rimraf ./dist && webpack",
"test": "jest --runInBand --no-cache --testPathIgnorePatterns=\"(build|dev)\"",
"pretest": "yarn build",
"prepublishOnly": "yarn build-release",
"test:local": "jest --runInBand",
"lint": "eslint --ext ts \"./src/**/*.ts\"",
"lint-fix": "eslint --fix --ext ts \"./src/**/*.ts\"",
"lint:lockfile": "lockfile-lint --path yarn.lock --type yarn --validate-https --allowed-hosts npm yarn",
"format": "prettier --write --end-of-line=auto \"./**/*.{js,jsx,ts,tsx,html,css,json}\" --ignore-path .gitignore",
"format:check": "prettier --check --end-of-line=auto \"./**/*.{js,jsx,ts,tsx,html,css,json}\" --ignore-path .gitignore"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tauri-apps/tauri.git"
},
"contributors": [
"Tauri Team <team@tauri-apps.org> (https://tauri.studio)",
"Daniel Thompson-Yvetot <denjell@sfosc.org>",
"Lucas Fernandes Gonçalves Nogueira <lucas@tauri.studio>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/tauri-apps/tauri/issues"
},
"homepage": "https://github.com/tauri-apps/tauri#readme",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">= 10.17.0",
"npm": ">= 6.6.0",
"yarn": ">= 1.19.1"
},
"dependencies": {
"@tauri-apps/toml": "2.2.4",
"chalk": "4.1.0",
"cross-spawn": "7.0.3",
"fast-glob": "3.2.5",
"fs-extra": "9.1.0",
"imagemin": "7.0.1",
"imagemin-optipng": "8.0.0",
"imagemin-pngquant": "9.0.2",
"imagemin-zopfli": "7.0.0",
"inquirer": "8.0.0",
"is-png": "2.0.0",
"isbinaryfile": "4.0.6",
"lodash": "4.17.21",
"minimist": "1.2.5",
"ms": "2.1.3",
"png2icons": "2.0.1",
"read-chunk": "3.2.0",
"semver": "7.3.5",
"sharp": "0.28.0"
},
"devDependencies": {
"@babel/core": "7.13.14",
"@babel/preset-env": "7.13.12",
"@babel/preset-typescript": "7.13.0",
"@types/cross-spawn": "6.0.2",
"@types/fs-extra": "9.0.9",
"@types/imagemin": "7.0.0",
"@types/imagemin-optipng": "5.2.0",
"@types/inquirer": "7.3.1",
"@types/lodash": "4.14.168",
"@types/ms": "0.7.31",
"@types/semver": "7.3.4",
"@types/sharp": "0.27.2",
"@typescript-eslint/eslint-plugin": "4.20.0",
"@typescript-eslint/parser": "4.20.0",
"babel-jest": "26.6.3",
"dotenv": "8.2.0",
"eslint": "7.23.0",
"eslint-config-prettier": "8.1.0",
"eslint-config-standard-with-typescript": "20.0.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-lodash-template": "0.19.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-security": "1.4.0",
"is-running": "2.1.0",
"jest": "26.6.3",
"jest-transform-toml": "1.0.0",
"lockfile-lint": "4.6.2",
"prettier": "2.2.1",
"promise": "8.1.0",
"raw-loader": "4.0.2",
"rimraf": "3.0.2",
"toml-loader": "1.0.0",
"ts-loader": "8.1.0",
"typescript": "4.2.3",
"webpack": "5.28.0",
"webpack-cli": "4.6.0",
"webpack-node-externals": "2.5.2"
},
"resolutions": {
"**/lodash": "4.17.21"
}
}