mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-18 16:11:38 +03:00
c410e034f7
* convert jest tests to child_process run script * remove vuecli (it freezes), add angular * run cargo build in correct dir * add in asserts on fs * normalize assert for node14 * fix installing empty dependencies * add messages to asserts * use test dir to check if running local cli * try running in parallel * run in parallel and log output serially * avoid parallel, skip yarn for now * add change file * disable running with npm6 due to vite fail Co-authored-by: amrbashir <48618675+amrbashir@users.noreply.github.com>
68 lines
2.2 KiB
JSON
68 lines
2.2 KiB
JSON
{
|
|
"name": "create-tauri-app",
|
|
"version": "1.0.0-beta.3",
|
|
"description": "Jump right into a Tauri App!",
|
|
"bin": {
|
|
"create-tauri-app": "./bin/create-tauri-app.js"
|
|
},
|
|
"repository": "git+https://github.com/tauri-apps/tauri.git",
|
|
"license": "MIT OR Apache-2.0",
|
|
"bugs": {
|
|
"url": "https://github.com/tauri-apps/tauri/issues"
|
|
},
|
|
"homepage": "https://github.com/tauri-apps/tauri#readme",
|
|
"contributors": [
|
|
"Tauri Programme within The Commons Conservancy"
|
|
],
|
|
"main": "bin/create-tauri-app.js",
|
|
"files": [
|
|
"bin",
|
|
"dist",
|
|
"src/templates"
|
|
],
|
|
"scripts": {
|
|
"create-tauri-app": "create-tauri-app",
|
|
"build": "rollup --config",
|
|
"prepublishOnly": "yarn build",
|
|
"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 \"./**/*.{cjs,js,jsx,ts,tsx,html,css,json}\" --ignore-path .gitignore",
|
|
"format:check": "prettier --check --end-of-line=auto \"./**/*.{cjs,js,jsx,ts,tsx,html,css,json}\" --ignore-path .gitignore",
|
|
"test": "node ./test/spawn.test.mjs"
|
|
},
|
|
"dependencies": {
|
|
"chalk": "4.1.1",
|
|
"execa": "^5.0.0",
|
|
"inquirer": "^8.0.0",
|
|
"minimist": "^1.2.5",
|
|
"scaffe": "1.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@effection/process": "2.0.0-beta.8",
|
|
"@rollup/plugin-commonjs": "19.0.0",
|
|
"@rollup/plugin-node-resolve": "13.0.0",
|
|
"@rollup/plugin-typescript": "8.2.1",
|
|
"@types/cross-spawn": "6.0.2",
|
|
"@types/inquirer": "7.3.1",
|
|
"@types/minimist": "1.2.1",
|
|
"@types/semver": "7.3.6",
|
|
"@typescript-eslint/eslint-plugin": "4.25.0",
|
|
"@typescript-eslint/parser": "4.25.0",
|
|
"effection": "2.0.0-beta.8",
|
|
"eslint": "7.27.0",
|
|
"eslint-config-prettier": "8.3.0",
|
|
"eslint-config-standard-with-typescript": "20.0.0",
|
|
"eslint-plugin-import": "2.23.4",
|
|
"eslint-plugin-lodash-template": "0.19.0",
|
|
"eslint-plugin-node": "11.1.0",
|
|
"eslint-plugin-promise": "5.1.0",
|
|
"eslint-plugin-security": "1.4.0",
|
|
"prettier": "2.3.0",
|
|
"rollup": "2.50.4",
|
|
"temp-dir": "^2.0.0",
|
|
"tslib": "2.2.0",
|
|
"typescript": "4.3.2"
|
|
}
|
|
}
|