mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-11-29 04:55:40 +03:00
431e9e44e4
Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
118 lines
3.7 KiB
JSON
118 lines
3.7 KiB
JSON
{
|
|
"name": "@tauri-apps/cli",
|
|
"version": "1.0.0-beta.9",
|
|
"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",
|
|
"global-agent": "3.0.0",
|
|
"got": "11.8.2",
|
|
"imagemin": "8.0.1",
|
|
"imagemin-optipng": "8.0.0",
|
|
"imagemin-zopfli": "7.0.0",
|
|
"inquirer": "8.1.2",
|
|
"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.15.0",
|
|
"@babel/preset-env": "7.15.0",
|
|
"@babel/preset-typescript": "7.15.0",
|
|
"@jest/globals": "27.0.6",
|
|
"@rollup/plugin-babel": "5.3.0",
|
|
"@rollup/plugin-commonjs": "20.0.0",
|
|
"@rollup/plugin-node-resolve": "13.0.4",
|
|
"@rollup/plugin-replace": "^3.0.0",
|
|
"@rollup/plugin-typescript": "8.2.5",
|
|
"@types/cross-spawn": "6.0.2",
|
|
"@types/fs-extra": "9.0.12",
|
|
"@types/global-agent": "2.1.1",
|
|
"@types/imagemin": "7.0.1",
|
|
"@types/imagemin-optipng": "5.2.1",
|
|
"@types/inquirer": "7.3.3",
|
|
"@types/ms": "0.7.31",
|
|
"@types/semver": "7.3.8",
|
|
"@types/sharp": "0.28.5",
|
|
"@typescript-eslint/eslint-plugin": "4.29.1",
|
|
"@typescript-eslint/parser": "4.29.1",
|
|
"babel-jest": "27.0.6",
|
|
"eslint": "7.32.0",
|
|
"eslint-config-prettier": "8.3.0",
|
|
"eslint-config-standard-with-typescript": "20.0.0",
|
|
"eslint-plugin-import": "2.24.0",
|
|
"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.6",
|
|
"jest-transform-toml": "1.0.0",
|
|
"lockfile-lint": "4.6.2",
|
|
"prettier": "2.3.2",
|
|
"promise": "8.1.0",
|
|
"rimraf": "3.0.2",
|
|
"rollup": "2.56.2",
|
|
"rollup-plugin-terser": "7.0.2",
|
|
"tslib": "2.3.1",
|
|
"typescript": "4.3.5"
|
|
},
|
|
"resolutions": {
|
|
"**/trim-newlines": "4.0.2"
|
|
}
|
|
}
|