2019-07-14 15:47:29 +03:00
|
|
|
{
|
2019-11-28 01:26:24 +03:00
|
|
|
"name": "tauri",
|
2019-12-19 02:19:46 +03:00
|
|
|
"version": "0.2.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": {
|
2019-11-30 21:39:13 +03:00
|
|
|
"test": "jest --runInBand --no-cache",
|
|
|
|
"test:mac-local": "jest --runInBand",
|
2019-12-05 01:35:39 +03:00
|
|
|
"lint-fix": "eslint --fix ./bin/*.js ./*.js ./helpers/*.js",
|
|
|
|
"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": [
|
|
|
|
"Tauri Team <team@tauri-apps.org> (https://tauri-apps.org)",
|
|
|
|
"Daniel Thompson-Yvetot <denjell@sfosc.org>",
|
|
|
|
"Lucas Fernandes Gonçalves Nogueira <lucas@quasar.dev>"
|
|
|
|
],
|
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": {
|
2019-12-15 23:20:18 +03:00
|
|
|
"@tauri-apps/toml": "2.2.4",
|
2019-11-30 21:39:13 +03:00
|
|
|
"chalk": "3.0.0",
|
2019-12-19 02:19:09 +03:00
|
|
|
"chokidar": "3.3.1",
|
2019-11-30 21:39:13 +03:00
|
|
|
"cross-spawn": "7.0.1",
|
2019-12-01 15:27:37 +03:00
|
|
|
"fast-glob": "3.1.1",
|
2019-11-30 16:19:55 +03:00
|
|
|
"fs-extra": "8.1.0",
|
|
|
|
"imagemin": "7.0.1",
|
|
|
|
"imagemin-optipng": "7.1.0",
|
|
|
|
"imagemin-pngquant": "8.0.0",
|
|
|
|
"imagemin-zopfli": "6.0.0",
|
2019-12-18 03:13:01 +03:00
|
|
|
"@tauri-apps/tauri-inliner": "1.13.2",
|
2019-11-30 16:19:55 +03:00
|
|
|
"is-png": "2.0.0",
|
|
|
|
"isbinaryfile": "4.0.2",
|
2019-12-18 13:42:44 +03:00
|
|
|
"jsdom": "15.2.1",
|
2019-11-30 16:19:55 +03:00
|
|
|
"lodash.debounce": "4.0.8",
|
|
|
|
"lodash.template": "4.5.0",
|
|
|
|
"minimist": "1.2.0",
|
|
|
|
"ms": "2.1.2",
|
|
|
|
"png2icons": "2.0.1",
|
|
|
|
"read-chunk": "3.2.0",
|
2019-12-10 12:30:00 +03:00
|
|
|
"sharp": "0.23.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": {
|
2019-11-30 16:19:55 +03:00
|
|
|
"dotenv": "8.2.0",
|
2019-11-30 21:39:13 +03:00
|
|
|
"eslint": "6.7.2",
|
2019-11-30 16:19:55 +03:00
|
|
|
"eslint-config-standard": "14.1.0",
|
2019-12-10 12:35:55 +03:00
|
|
|
"eslint-plugin-import": "2.19.1",
|
2019-12-03 19:08:07 +03:00
|
|
|
"eslint-plugin-lodash-template": "0.15.0",
|
2019-11-30 14:24:13 +03:00
|
|
|
"eslint-plugin-node": "10.0.0",
|
|
|
|
"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",
|
2019-11-30 16:19:55 +03:00
|
|
|
"husky": "3.1.0",
|
2019-11-16 21:51:46 +03:00
|
|
|
"jest": "24.9.0",
|
2019-11-30 16:19:55 +03:00
|
|
|
"jest-mock-process": "1.2.0",
|
2019-11-30 21:39:13 +03:00
|
|
|
"lint-staged": "9.5.0",
|
2019-12-20 15:20:47 +03:00
|
|
|
"lockfile-lint": "3.0.4",
|
2019-11-30 16:19:55 +03:00
|
|
|
"promise": "8.0.3"
|
2019-11-16 21:51:46 +03:00
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "lint-staged"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint-staged": [
|
|
|
|
"eslint --fix",
|
|
|
|
"git add"
|
|
|
|
]
|
2019-07-14 15:47:29 +03:00
|
|
|
}
|