tauri/tooling/cli.js/package.json
renovate[bot] d11495f45a
chore(deps) Update Tauri JS CLI (#2950)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-11-24 10:21:47 -03:00

121 lines
3.7 KiB
JSON

{
"name": "@tauri-apps/cli",
"version": "1.0.0-beta.10",
"description": "Command line interface for building Tauri apps",
"type": "module",
"bin": {
"tauri": "./bin/tauri.js"
},
"files": [
"bin",
"dist",
"scripts"
],
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/tauri"
},
"scripts": {
"build": "rimraf ./dist && rollup -c --silent",
"build-release": "rimraf ./dist && cross-env NODE_ENV=production rollup -c",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --runInBand --forceExit --no-cache --testPathIgnorePatterns=\"(build|dev)\"",
"pretest": "yarn build",
"prepublishOnly": "yarn build-release",
"test:local": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --runInBand --forceExit",
"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 \"./**/*.{cjs,js,jsx,ts,tsx,html,css,json}\" --ignore-path .gitignore",
"format:check": "prettier --check --end-of-line=auto \"./**/*.{cjs,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.20.0",
"npm": ">= 6.6.0",
"yarn": ">= 1.19.1"
},
"dependencies": {
"@tauri-apps/toml": "2.2.4",
"chalk": "4.1.2",
"cross-env": "7.0.3",
"cross-spawn": "7.0.3",
"fs-extra": "10.0.0",
"glob": "7.2.0",
"global-agent": "3.0.0",
"got": "11.8.3",
"imagemin": "8.0.1",
"imagemin-optipng": "8.0.0",
"imagemin-zopfli": "7.0.0",
"inquirer": "8.2.0",
"is-png": "3.0.1",
"minimist": "1.2.5",
"ms": "2.1.3",
"png-to-ico": "2.1.2",
"png2icons": "2.0.1",
"read-chunk": "4.0.2",
"semver": "7.3.5",
"sharp": "0.29.3",
"update-notifier": "5.1.0"
},
"devDependencies": {
"@babel/core": "7.16.0",
"@babel/preset-env": "7.16.4",
"@babel/preset-typescript": "7.16.0",
"@jest/globals": "27.3.1",
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-commonjs": "21.0.1",
"@rollup/plugin-node-resolve": "13.0.6",
"@rollup/plugin-replace": "3.0.0",
"@rollup/plugin-typescript": "8.3.0",
"@types/cross-spawn": "6.0.2",
"@types/fs-extra": "9.0.13",
"@types/glob": "7.2.0",
"@types/global-agent": "2.1.1",
"@types/imagemin": "8.0.0",
"@types/imagemin-optipng": "5.2.1",
"@types/inquirer": "8.1.3",
"@types/ms": "0.7.31",
"@types/semver": "7.3.9",
"@types/sharp": "0.29.4",
"@typescript-eslint/eslint-plugin": "5.4.0",
"@typescript-eslint/parser": "5.4.0",
"babel-jest": "27.3.1",
"eslint": "8.3.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard-with-typescript": "21.0.1",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-lodash-template": "0.19.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.1",
"eslint-plugin-security": "1.4.0",
"is-running": "2.1.0",
"jest": "27.3.1",
"jest-transform-toml": "1.0.0",
"lockfile-lint": "4.6.2",
"prettier": "2.4.1",
"promise": "8.1.0",
"rimraf": "3.0.2",
"rollup": "2.60.1",
"rollup-plugin-terser": "7.0.2",
"tslib": "2.3.1",
"typescript": "4.5.2"
},
"resolutions": {
"**/trim-newlines": "4.0.2"
}
}