tauri/tooling/cli.js/package.json
renovate[bot] 0a3bd02691
chore(deps) Update Tauri JS CLI (#1968)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-06-15 13:20:05 -03:00

113 lines
3.3 KiB
JSON

{
"name": "@tauri-apps/cli",
"version": "1.0.0-beta.2",
"description": "Command line interface for building Tauri apps",
"bin": {
"tauri": "./bin/tauri.js"
},
"files": [
"bin",
"dist",
"scripts"
],
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/tauri"
},
"scripts": {
"build": "rimraf ./dist && webpack --progress",
"build-release": "rimraf ./dist && cross-env NODE_ENV=production 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)"
],
"license": "Apache-2.0 OR MIT",
"bugs": {
"url": "https://github.com/tauri-apps/tauri/issues"
},
"homepage": "https://github.com/tauri-apps/tauri#readme",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">= 12.13.0",
"npm": ">= 6.6.0",
"yarn": ">= 1.19.1"
},
"dependencies": {
"@tauri-apps/toml": "2.2.4",
"chalk": "4.1.1",
"cross-env": "7.0.3",
"cross-spawn": "7.0.3",
"fs-extra": "10.0.0",
"got": "11.8.2",
"imagemin": "8.0.0",
"imagemin-optipng": "8.0.0",
"imagemin-zopfli": "7.0.0",
"inquirer": "8.1.0",
"is-png": "3.0.0",
"minimist": "1.2.5",
"ms": "2.1.3",
"png2icons": "2.0.1",
"read-chunk": "3.2.0",
"semver": "7.3.5",
"sharp": "0.28.3",
"update-notifier": "5.1.0"
},
"devDependencies": {
"@babel/core": "7.14.6",
"@babel/preset-env": "7.14.5",
"@babel/preset-typescript": "7.14.5",
"@types/cross-spawn": "6.0.2",
"@types/fs-extra": "9.0.11",
"@types/imagemin": "7.0.0",
"@types/imagemin-optipng": "5.2.0",
"@types/inquirer": "7.3.1",
"@types/ms": "0.7.31",
"@types/semver": "7.3.6",
"@types/sharp": "0.28.3",
"@typescript-eslint/eslint-plugin": "4.27.0",
"@typescript-eslint/parser": "4.27.0",
"babel-jest": "27.0.2",
"eslint": "7.28.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard-with-typescript": "20.0.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-lodash-template": "0.19.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-security": "1.4.0",
"is-running": "2.1.0",
"jest": "27.0.4",
"jest-transform-toml": "1.0.0",
"lockfile-lint": "4.6.2",
"prettier": "2.3.1",
"promise": "8.1.0",
"raw-loader": "4.0.2",
"rimraf": "3.0.2",
"toml-loader": "1.0.0",
"ts-loader": "9.2.3",
"typescript": "4.3.2",
"webpack": "5.39.0",
"webpack-cli": "4.7.2",
"webpack-node-externals": "3.0.0"
},
"resolutions": {
"**/lodash": "4.17.21",
"**/hosted-git-info": "4.0.2"
}
}