Files
tauri/package.json
Lucas Fernandes Nogueira a0f410dcff feat(tauri) initial work for the CLI (#20)
* feat(tauri) initial work for the CLI

* feat(build) read dist path from env

* feat(tauri) proton.js entry

* feat(tauri) threeshake fs

* feat(injector) check if tauri dir exists

* feat(injector) don't show success message if dir exists

* chore(injector) cleanup fs imports
2019-08-19 18:09:29 -03:00

44 lines
1.0 KiB
JSON

{
"name": "@quasar/tauri",
"version": "1.0.0-alpha.1",
"description": "Multi-binding collection of libraries and templates for building Tauri",
"main": "tauri/lib.js",
"bin": {
"tauri": "tauri/bin/tauri.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quasarframework/tauri.git"
},
"author": "Quasar Framework",
"license": "MIT",
"bugs": {
"url": "https://github.com/quasarframework/tauri/issues"
},
"homepage": "https://github.com/quasarframework/tauri#readme",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">= 10.16.0",
"npm": ">= 6.6.0",
"yarn": ">= 1.17.3"
},
"dependencies": {
"@iarna/toml": "^2.2.3",
"chalk": "^2.4.2",
"chokidar": "^3.0.2",
"cross-spawn": "^6.0.5",
"fast-glob": "^3.0.4",
"fs-extra": "^8.1.0",
"lodash.debounce": "^4.0.8",
"lodash.template": "^4.5.0",
"minimist": "^1.2.0",
"ms": "^2.1.2",
"webpack-merge": "^4.2.1"
}
}