2019-07-14 15:47:29 +03:00
|
|
|
{
|
2019-11-28 01:26:24 +03:00
|
|
|
"name": "tauri",
|
2020-06-25 04:28:41 +03:00
|
|
|
"version": "0.7.1",
|
2019-10-07 21:36:56 +03:00
|
|
|
"description": "Multi-binding collection of libraries and templates for building Tauri apps",
|
2019-08-20 00:09:29 +03:00
|
|
|
"bin": {
|
2019-11-29 09:27:26 +03:00
|
|
|
"tauri": "./bin/tauri.js"
|
2019-08-20 00:09:29 +03:00
|
|
|
},
|
2019-11-20 13:45:06 +03:00
|
|
|
"funding": {
|
|
|
|
"type": "opencollective",
|
|
|
|
"url": "https://opencollective.com/tauri"
|
|
|
|
},
|
2019-07-14 15:47:29 +03:00
|
|
|
"scripts": {
|
2020-07-03 21:57:52 +03:00
|
|
|
"build": "yarn build:api && yarn build:typedefs && yarn build:webpack",
|
2020-06-27 18:20:00 +03:00
|
|
|
"build:webpack": "webpack --progress",
|
2020-07-03 21:57:52 +03:00
|
|
|
"build:api": "rollup -c && yarn build:typedefs",
|
|
|
|
"build:typedefs": "yarn tsc ./api-src/index.ts --declaration --emitDeclarationOnly --outDir api",
|
2020-02-21 17:26:07 +03:00
|
|
|
"build-release": "yarn build --display none --progress false",
|
2020-03-30 05:41:45 +03:00
|
|
|
"test": "jest --runInBand --no-cache --testPathIgnorePatterns=\"(build|dev)\"",
|
2019-12-24 15:40:03 +03:00
|
|
|
"pretest": "yarn build",
|
2020-02-21 17:26:07 +03:00
|
|
|
"prepublishOnly": "yarn build-release",
|
2020-03-30 05:41:45 +03:00
|
|
|
"test:local": "jest --runInBand",
|
2020-06-27 18:20:00 +03:00
|
|
|
"lint": "eslint --ext ts ./src/**/*.ts ./api-src/**/*.ts",
|
2019-12-24 15:40:03 +03:00
|
|
|
"lint-fix": "eslint --fix --ext ts ./src/**/*.ts",
|
2019-12-05 01:35:39 +03:00
|
|
|
"lint:lockfile": "lockfile-lint --path yarn.lock --type yarn --validate-https --allowed-hosts npm yarn",
|
|
|
|
"build:tauri[rust]": "cd ../tauri && TAURI_DIST_DIR=../../test/fixture/dist TAURI_DIR=../test/fixture cargo publish --dry-run --allow-dirty"
|
2019-07-14 15:47:29 +03:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2019-09-06 22:26:28 +03:00
|
|
|
"url": "git+https://github.com/tauri-apps/tauri.git"
|
2019-07-14 15:47:29 +03:00
|
|
|
},
|
2019-12-03 22:06:59 +03:00
|
|
|
"contributors": [
|
2020-01-23 13:16:59 +03:00
|
|
|
"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
|
|
|
],
|
2019-07-14 15:47:29 +03:00
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
2019-09-06 22:26:28 +03:00
|
|
|
"url": "https://github.com/tauri-apps/tauri/issues"
|
2019-07-14 15:47:29 +03:00
|
|
|
},
|
2019-09-06 22:26:28 +03:00
|
|
|
"homepage": "https://github.com/tauri-apps/tauri#readme",
|
2019-07-14 15:47:29 +03:00
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
|
|
|
},
|
|
|
|
"engines": {
|
2019-11-29 09:27:26 +03:00
|
|
|
"node": ">= 10.17.0",
|
2019-07-14 15:47:29 +03:00
|
|
|
"npm": ">= 6.6.0",
|
2019-11-16 21:51:46 +03:00
|
|
|
"yarn": ">= 1.19.1"
|
2019-08-20 00:09:29 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-03-29 19:57:47 +03:00
|
|
|
"@tauri-apps/tauri-inliner": "1.14.1",
|
2019-12-15 23:20:18 +03:00
|
|
|
"@tauri-apps/toml": "2.2.4",
|
2020-06-10 17:48:38 +03:00
|
|
|
"chalk": "4.1.0",
|
2020-05-05 16:35:03 +03:00
|
|
|
"chokidar": "3.4.0",
|
2020-05-30 14:54:16 +03:00
|
|
|
"cross-spawn": "7.0.3",
|
2020-06-17 18:26:13 +03:00
|
|
|
"fast-glob": "3.2.4",
|
2020-06-04 08:57:10 +03:00
|
|
|
"fs-extra": "9.0.1",
|
2020-05-30 14:54:16 +03:00
|
|
|
"http-proxy": "1.18.1",
|
2019-11-30 16:19:55 +03:00
|
|
|
"imagemin": "7.0.1",
|
2020-05-30 02:48:57 +03:00
|
|
|
"imagemin-optipng": "8.0.0",
|
2020-06-04 08:56:33 +03:00
|
|
|
"imagemin-pngquant": "9.0.0",
|
2020-05-30 02:48:57 +03:00
|
|
|
"imagemin-zopfli": "7.0.0",
|
2019-11-30 16:19:55 +03:00
|
|
|
"is-png": "2.0.0",
|
2020-04-16 20:38:10 +03:00
|
|
|
"isbinaryfile": "4.0.6",
|
2020-04-01 11:28:15 +03:00
|
|
|
"jsdom": "16.2.2",
|
2019-12-29 18:38:27 +03:00
|
|
|
"lodash": "4.17.15",
|
2020-03-29 19:57:47 +03:00
|
|
|
"minimist": "1.2.5",
|
2019-11-30 16:19:55 +03:00
|
|
|
"ms": "2.1.2",
|
|
|
|
"png2icons": "2.0.1",
|
|
|
|
"read-chunk": "3.2.0",
|
2020-06-17 18:26:13 +03:00
|
|
|
"sharp": "0.25.4",
|
2019-11-30 21:39:13 +03:00
|
|
|
"webpack-merge": "4.2.2",
|
2019-11-30 16:19:55 +03:00
|
|
|
"webpack-shell-plugin": "0.5.0"
|
2019-11-16 21:51:46 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-07-02 16:42:54 +03:00
|
|
|
"@babel/core": "7.10.4",
|
|
|
|
"@babel/preset-env": "7.10.4",
|
|
|
|
"@babel/preset-typescript": "7.10.4",
|
|
|
|
"@rollup/plugin-babel": "5.0.4",
|
2020-06-27 18:20:00 +03:00
|
|
|
"@rollup/plugin-commonjs": "13.0.0",
|
|
|
|
"@rollup/plugin-json": "4.1.0",
|
2020-07-02 16:42:54 +03:00
|
|
|
"@rollup/plugin-node-resolve": "8.1.0",
|
|
|
|
"@rollup/plugin-sucrase": "3.1.0",
|
2020-07-03 01:14:50 +03:00
|
|
|
"@rollup/plugin-typescript": "5.0.1",
|
2020-05-30 14:54:16 +03:00
|
|
|
"@types/cross-spawn": "6.0.2",
|
2020-05-30 02:48:57 +03:00
|
|
|
"@types/fs-extra": "9.0.1",
|
2020-05-30 02:08:17 +03:00
|
|
|
"@types/http-proxy": "1.17.4",
|
2019-12-29 16:02:54 +03:00
|
|
|
"@types/imagemin": "7.0.0",
|
|
|
|
"@types/imagemin-optipng": "5.2.0",
|
2020-05-30 14:54:16 +03:00
|
|
|
"@types/jsdom": "16.2.3",
|
2020-06-26 01:56:00 +03:00
|
|
|
"@types/lodash": "4.14.157",
|
2019-12-29 16:02:54 +03:00
|
|
|
"@types/ms": "0.7.31",
|
2020-04-26 14:26:11 +03:00
|
|
|
"@types/sharp": "0.25.0",
|
2019-12-29 16:02:54 +03:00
|
|
|
"@types/webpack-merge": "4.1.5",
|
2020-07-02 16:42:54 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "3.5.0",
|
|
|
|
"@typescript-eslint/parser": "3.5.0",
|
2020-06-26 01:56:00 +03:00
|
|
|
"babel-jest": "26.1.0",
|
2019-11-30 16:19:55 +03:00
|
|
|
"dotenv": "8.2.0",
|
2020-06-26 01:56:00 +03:00
|
|
|
"eslint": "7.3.1",
|
2020-05-30 02:48:57 +03:00
|
|
|
"eslint-config-standard-with-typescript": "18.0.2",
|
2020-07-02 16:42:54 +03:00
|
|
|
"eslint-plugin-import": "2.22.0",
|
2020-06-26 01:56:00 +03:00
|
|
|
"eslint-plugin-lodash-template": "0.19.0",
|
2020-03-29 19:57:47 +03:00
|
|
|
"eslint-plugin-node": "11.1.0",
|
2019-11-30 14:24:13 +03:00
|
|
|
"eslint-plugin-promise": "4.2.1",
|
2019-12-05 01:35:39 +03:00
|
|
|
"eslint-plugin-security": "1.4.0",
|
2019-11-30 14:24:13 +03:00
|
|
|
"eslint-plugin-standard": "4.0.1",
|
2020-04-16 20:38:10 +03:00
|
|
|
"husky": "4.2.5",
|
2020-03-12 17:51:30 +03:00
|
|
|
"is-running": "2.1.0",
|
2020-06-26 01:56:00 +03:00
|
|
|
"jest": "26.1.0",
|
2020-05-05 16:35:03 +03:00
|
|
|
"jest-mock-process": "1.4.0",
|
2020-06-17 18:26:13 +03:00
|
|
|
"lint-staged": "10.2.11",
|
2020-06-26 01:56:00 +03:00
|
|
|
"lockfile-lint": "4.3.7",
|
2020-03-07 11:54:37 +03:00
|
|
|
"promise": "8.1.0",
|
2020-04-16 20:38:10 +03:00
|
|
|
"raw-loader": "4.0.1",
|
2020-07-02 16:42:54 +03:00
|
|
|
"rollup": "2.18.2",
|
2020-06-27 18:20:00 +03:00
|
|
|
"rollup-plugin-terser": "6.1.0",
|
|
|
|
"rollup-plugin-typescript2": "0.27.1",
|
2020-06-26 01:58:35 +03:00
|
|
|
"toml-loader": "1.0.0",
|
2020-05-30 14:54:16 +03:00
|
|
|
"ts-loader": "7.0.5",
|
2020-06-27 18:20:00 +03:00
|
|
|
"tslib": "2.0.0",
|
2020-07-03 21:57:52 +03:00
|
|
|
"typescript": "^3.9.6",
|
2020-04-26 14:26:11 +03:00
|
|
|
"webpack": "4.43.0",
|
2020-06-26 01:56:00 +03:00
|
|
|
"webpack-cli": "3.3.12",
|
2019-12-24 15:40:03 +03:00
|
|
|
"webpack-node-externals": "1.7.2"
|
2019-11-16 21:51:46 +03:00
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "lint-staged"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint-staged": [
|
2020-02-24 16:12:05 +03:00
|
|
|
"eslint --fix"
|
2019-11-16 21:51:46 +03:00
|
|
|
]
|
2020-03-01 18:47:11 +03:00
|
|
|
}
|