mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-01 11:13:40 +03:00
49c450d6fe
Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com> Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
116 lines
3.5 KiB
JSON
116 lines
3.5 KiB
JSON
{
|
|
"name": "@tauri-apps/cli",
|
|
"version": "1.0.0-beta-rc.0",
|
|
"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)",
|
|
"Daniel Thompson-Yvetot <denjell@sfosc.org>",
|
|
"Lucas Fernandes Gonçalves Nogueira <lucas@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": ">= 10.17.0",
|
|
"npm": ">= 6.6.0",
|
|
"yarn": ">= 1.19.1"
|
|
},
|
|
"dependencies": {
|
|
"@tauri-apps/toml": "2.2.4",
|
|
"chalk": "4.1.0",
|
|
"cross-env": "7.0.3",
|
|
"cross-spawn": "7.0.3",
|
|
"fs-extra": "9.1.0",
|
|
"got": "11.8.2",
|
|
"imagemin": "7.0.1",
|
|
"imagemin-optipng": "8.0.0",
|
|
"imagemin-pngquant": "9.0.2",
|
|
"imagemin-zopfli": "7.0.0",
|
|
"inquirer": "8.0.0",
|
|
"is-png": "2.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.1",
|
|
"update-notifier": "5.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "7.13.14",
|
|
"@babel/preset-env": "7.13.12",
|
|
"@babel/preset-typescript": "7.13.0",
|
|
"@types/cross-spawn": "6.0.2",
|
|
"@types/fs-extra": "9.0.10",
|
|
"@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.4",
|
|
"@types/sharp": "0.28.0",
|
|
"@typescript-eslint/eslint-plugin": "4.21.0",
|
|
"@typescript-eslint/parser": "4.21.0",
|
|
"babel-jest": "26.6.3",
|
|
"dotenv": "8.2.0",
|
|
"eslint": "7.23.0",
|
|
"eslint-config-prettier": "8.1.0",
|
|
"eslint-config-standard-with-typescript": "20.0.0",
|
|
"eslint-plugin-import": "2.22.1",
|
|
"eslint-plugin-lodash-template": "0.19.0",
|
|
"eslint-plugin-node": "11.1.0",
|
|
"eslint-plugin-promise": "4.3.1",
|
|
"eslint-plugin-security": "1.4.0",
|
|
"is-running": "2.1.0",
|
|
"jest": "26.6.3",
|
|
"jest-transform-toml": "1.0.0",
|
|
"lockfile-lint": "4.6.2",
|
|
"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.1.0",
|
|
"typescript": "4.2.4",
|
|
"webpack": "5.31.0",
|
|
"webpack-cli": "4.6.0",
|
|
"webpack-node-externals": "2.5.2"
|
|
},
|
|
"resolutions": {
|
|
"**/lodash": "4.17.21"
|
|
}
|
|
}
|