tauri/cli/tauri.js/package.json

137 lines
4.5 KiB
JSON
Raw Normal View History

{
"name": "@tauri-apps/cli",
"version": "0.14.1",
"description": "Command line interface for building Tauri apps",
"bin": {
2019-11-29 09:27:26 +03:00
"tauri": "./bin/tauri.js"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/tauri"
},
"scripts": {
"build:typevalidators": "node ./build/type-validators",
"build": "rimraf ./dist && yarn build:typevalidators && webpack --progress",
"build-release": "rimraf ./dist && yarn build:typevalidators && 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 !./**/config.validator.js !./**/config.schema.json \"./**/*.{js,jsx,ts,tsx,html,css,json}\" --ignore-path .gitignore",
"format:check": "prettier --check --end-of-line=auto !./**/config.validator.js !./**/config.schema.json \"./**/*.{js,jsx,ts,tsx,html,css,json}\" --ignore-path .gitignore",
"build:tauri[rust]": "cd ../tauri && TAURI_DIST_DIR=../../test/fixture/dist TAURI_DIR=../test/fixture cargo publish --dry-run --allow-dirty"
},
"repository": {
"type": "git",
2019-09-06 22:26:28 +03:00
"url": "git+https://github.com/tauri-apps/tauri.git"
},
2019-12-03 22:06:59 +03:00
"contributors": [
"Tauri Team <team@tauri-apps.org> (https://tauri.studio)",
2019-12-03 22:06:59 +03:00
"Daniel Thompson-Yvetot <denjell@sfosc.org>",
2020-05-22 01:25:03 +03:00
"Lucas Fernandes Gonçalves Nogueira <lucas@tauri.studio>"
2019-12-03 22:06:59 +03:00
],
"license": "MIT",
"bugs": {
2019-09-06 22:26:28 +03:00
"url": "https://github.com/tauri-apps/tauri/issues"
},
2019-09-06 22:26:28 +03:00
"homepage": "https://github.com/tauri-apps/tauri#readme",
"publishConfig": {
"access": "public"
},
"engines": {
2019-11-29 09:27:26 +03:00
"node": ">= 10.17.0",
"npm": ">= 6.6.0",
"yarn": ">= 1.19.1"
},
"dependencies": {
"@tauri-apps/toml": "2.2.4",
"chalk": "4.1.0",
"chokidar": "3.5.1",
"cross-spawn": "7.0.3",
"fast-glob": "3.2.5",
"fs-extra": "9.1.0",
"http-proxy": "1.18.1",
2019-11-30 16:19:55 +03:00
"imagemin": "7.0.1",
"imagemin-optipng": "8.0.0",
"imagemin-pngquant": "9.0.1",
"imagemin-zopfli": "7.0.0",
"inquirer": "7.3.3",
2019-11-30 16:19:55 +03:00
"is-png": "2.0.0",
"is-reachable": "5.0.0",
"isbinaryfile": "4.0.6",
"jsdom": "16.4.0",
"lodash": "4.17.20",
"minimist": "1.2.5",
"ms": "2.1.3",
2019-11-30 16:19:55 +03:00
"png2icons": "2.0.1",
"read-chunk": "3.2.0",
"semver": "7.3.4",
"sharp": "0.27.0",
"webpack-merge": "5.7.3",
2019-11-30 16:19:55 +03:00
"webpack-shell-plugin": "0.5.0"
},
"devDependencies": {
"@babel/core": "7.12.10",
"@babel/preset-env": "7.12.11",
"@babel/preset-typescript": "7.12.7",
"@types/cross-spawn": "6.0.2",
"@types/fs-extra": "9.0.6",
"@types/http-proxy": "1.17.5",
"@types/imagemin": "7.0.0",
"@types/imagemin-optipng": "5.2.0",
"@types/inquirer": "7.3.1",
"@types/jsdom": "16.2.6",
"@types/lodash": "4.14.168",
"@types/ms": "0.7.31",
"@types/semver": "7.3.4",
"@types/sharp": "0.27.1",
"@typescript-eslint/eslint-plugin": "4.14.0",
"@typescript-eslint/parser": "4.14.0",
"babel-jest": "26.6.3",
"copy-webpack-plugin": "7.0.0",
2019-11-30 16:19:55 +03:00
"dotenv": "8.2.0",
"eslint": "7.18.0",
"eslint-config-prettier": "7.2.0",
"eslint-config-standard-with-typescript": "19.0.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-lodash-template": "0.19.0",
"eslint-plugin-node": "11.1.0",
2019-11-30 14:24:13 +03:00
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-security": "1.4.0",
"eslint-plugin-standard": "4.1.0",
"husky": "4.3.8",
"is-running": "2.1.0",
"jest": "26.6.3",
2020-05-05 16:35:03 +03:00
"jest-mock-process": "1.4.0",
"lint-staged": "10.5.3",
"lockfile-lint": "4.3.7",
"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.0.14",
"tslib": "2.1.0",
"typescript": "4.1.3",
"typescript-json-validator": "2.4.2",
"webpack": "5.17.0",
"webpack-cli": "4.4.0",
"webpack-node-externals": "2.5.2"
},
"resolutions": {
"**/lodash": ">=4.17.19"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,html,css,json}": "prettier --write --end-of-line=auto !./**/config.validator.js !./**/config.schema.json \"./**/*.{js,jsx,ts,tsx,html,css,json}\" --ignore-path .gitignore",
"*.{ts,tsx}": "eslint --fix --ext ts ./src/**/*.ts"
}
}