123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- {
- "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": {
- "postinstall": "",
- "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",
- "find-up": "6.2.0",
- "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.7",
- "@babel/preset-env": "7.16.8",
- "@babel/preset-typescript": "7.16.7",
- "@jest/globals": "27.4.6",
- "@rollup/plugin-babel": "5.3.0",
- "@rollup/plugin-commonjs": "21.0.1",
- "@rollup/plugin-node-resolve": "13.1.3",
- "@rollup/plugin-replace": "3.0.1",
- "@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.5",
- "@typescript-eslint/eslint-plugin": "5.9.1",
- "@typescript-eslint/parser": "5.9.1",
- "babel-jest": "27.4.6",
- "eslint": "8.6.0",
- "eslint-config-prettier": "8.3.0",
- "eslint-config-standard-with-typescript": "21.0.1",
- "eslint-plugin-import": "2.25.4",
- "eslint-plugin-lodash-template": "0.19.0",
- "eslint-plugin-node": "11.1.0",
- "eslint-plugin-promise": "5.2.0",
- "eslint-plugin-security": "1.4.0",
- "is-running": "2.1.0",
- "jest": "27.4.7",
- "jest-transform-toml": "1.0.0",
- "lockfile-lint": "4.6.2",
- "prettier": "2.5.1",
- "promise": "8.1.0",
- "rimraf": "3.0.2",
- "rollup": "2.63.0",
- "rollup-plugin-terser": "7.0.2",
- "tslib": "2.3.1",
- "typescript": "4.5.4"
- },
- "resolutions": {
- "**/trim-newlines": "4.0.2"
- }
- }
|