package.json 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. {
  2. "name": "tauri",
  3. "version": "0.11.1",
  4. "description": "Multi-binding collection of libraries and templates for building Tauri apps",
  5. "bin": {
  6. "tauri": "./bin/tauri.js"
  7. },
  8. "funding": {
  9. "type": "opencollective",
  10. "url": "https://opencollective.com/tauri"
  11. },
  12. "scripts": {
  13. "build": "yarn build:api && yarn build:webpack",
  14. "build:webpack": "rimraf ./dist && yarn build:typevalidators && webpack --progress",
  15. "build:typevalidators": "node ./build/type-validators",
  16. "build:api": "rimraf ./api && rollup -c --silent",
  17. "build-release": "yarn build --display none --progress false",
  18. "test": "jest --runInBand --no-cache --testPathIgnorePatterns=\"(build|dev)\"",
  19. "pretest": "yarn build",
  20. "prepublishOnly": "yarn build-release",
  21. "test:local": "jest --runInBand",
  22. "lint": "eslint --ext ts ./src/**/*.ts ./api-src/**/*.ts",
  23. "lint-fix": "eslint --fix --ext ts ./src/**/*.ts",
  24. "lint:lockfile": "lockfile-lint --path yarn.lock --type yarn --validate-https --allowed-hosts npm yarn",
  25. "build:tauri[rust]": "cd ../tauri && TAURI_DIST_DIR=../../test/fixture/dist TAURI_DIR=../test/fixture cargo publish --dry-run --allow-dirty"
  26. },
  27. "repository": {
  28. "type": "git",
  29. "url": "git+https://github.com/tauri-apps/tauri.git"
  30. },
  31. "contributors": [
  32. "Tauri Team <team@tauri-apps.org> (https://tauri.studio)",
  33. "Daniel Thompson-Yvetot <denjell@sfosc.org>",
  34. "Lucas Fernandes Gonçalves Nogueira <lucas@tauri.studio>"
  35. ],
  36. "license": "MIT",
  37. "bugs": {
  38. "url": "https://github.com/tauri-apps/tauri/issues"
  39. },
  40. "homepage": "https://github.com/tauri-apps/tauri#readme",
  41. "publishConfig": {
  42. "access": "public"
  43. },
  44. "engines": {
  45. "node": ">= 10.17.0",
  46. "npm": ">= 6.6.0",
  47. "yarn": ">= 1.19.1"
  48. },
  49. "dependencies": {
  50. "@tauri-apps/tauri-inliner": "1.14.1",
  51. "@tauri-apps/toml": "2.2.4",
  52. "chalk": "4.1.0",
  53. "chokidar": "3.4.1",
  54. "cross-spawn": "7.0.3",
  55. "fast-glob": "3.2.4",
  56. "fs-extra": "9.0.1",
  57. "http-proxy": "1.18.1",
  58. "imagemin": "7.0.1",
  59. "imagemin-optipng": "8.0.0",
  60. "imagemin-pngquant": "9.0.0",
  61. "imagemin-zopfli": "7.0.0",
  62. "inquirer": "7.3.2",
  63. "is-png": "2.0.0",
  64. "is-reachable": "4.0.0",
  65. "isbinaryfile": "4.0.6",
  66. "jsdom": "16.3.0",
  67. "lodash": "4.17.19",
  68. "minimist": "1.2.5",
  69. "ms": "2.1.2",
  70. "png2icons": "2.0.1",
  71. "read-chunk": "3.2.0",
  72. "semver": "7.3.2",
  73. "sharp": "0.25.4",
  74. "webpack-merge": "5.0.9",
  75. "webpack-shell-plugin": "0.5.0"
  76. },
  77. "devDependencies": {
  78. "@babel/core": "7.10.5",
  79. "@babel/preset-env": "7.10.4",
  80. "@babel/preset-typescript": "7.10.4",
  81. "@rollup/plugin-babel": "5.1.0",
  82. "@rollup/plugin-commonjs": "14.0.0",
  83. "@rollup/plugin-json": "4.1.0",
  84. "@rollup/plugin-node-resolve": "8.4.0",
  85. "@rollup/plugin-sucrase": "3.1.0",
  86. "@rollup/plugin-typescript": "5.0.2",
  87. "@types/cross-spawn": "6.0.2",
  88. "@types/fs-extra": "9.0.1",
  89. "@types/http-proxy": "1.17.4",
  90. "@types/imagemin": "7.0.0",
  91. "@types/imagemin-optipng": "5.2.0",
  92. "@types/inquirer": "7.3.0",
  93. "@types/jsdom": "16.2.3",
  94. "@types/lodash": "4.14.158",
  95. "@types/ms": "0.7.31",
  96. "@types/semver": "7.3.1",
  97. "@types/sharp": "0.25.1",
  98. "@types/webpack-merge": "4.1.5",
  99. "@typescript-eslint/eslint-plugin": "3.7.0",
  100. "@typescript-eslint/parser": "3.7.0",
  101. "babel-jest": "26.1.0",
  102. "copy-webpack-plugin": "6.0.3",
  103. "dotenv": "8.2.0",
  104. "eslint": "7.5.0",
  105. "eslint-config-standard-with-typescript": "18.0.2",
  106. "eslint-plugin-import": "2.22.0",
  107. "eslint-plugin-lodash-template": "0.19.0",
  108. "eslint-plugin-node": "11.1.0",
  109. "eslint-plugin-promise": "4.2.1",
  110. "eslint-plugin-security": "1.4.0",
  111. "eslint-plugin-standard": "4.0.1",
  112. "husky": "4.2.5",
  113. "is-running": "2.1.0",
  114. "jest": "26.1.0",
  115. "jest-mock-process": "1.4.0",
  116. "lint-staged": "10.2.11",
  117. "lockfile-lint": "4.3.7",
  118. "promise": "8.1.0",
  119. "raw-loader": "4.0.1",
  120. "rimraf": "3.0.2",
  121. "rollup": "2.22.2",
  122. "rollup-plugin-terser": "6.1.0",
  123. "rollup-plugin-typescript2": "0.27.1",
  124. "toml-loader": "1.0.0",
  125. "ts-loader": "8.0.1",
  126. "tslib": "2.0.0",
  127. "typescript": "3.9.7",
  128. "typescript-json-validator": "2.4.2",
  129. "webpack": "4.43.0",
  130. "webpack-cli": "3.3.12",
  131. "webpack-node-externals": "2.5.0"
  132. },
  133. "resolutions": {
  134. "**/lodash": ">=4.17.19"
  135. },
  136. "husky": {
  137. "hooks": {
  138. "pre-commit": "lint-staged"
  139. }
  140. },
  141. "lint-staged": [
  142. "eslint --fix"
  143. ]
  144. }