2021-01-30 18:15:47 +03:00
|
|
|
{
|
|
|
|
"name": "@tauri-apps/api",
|
2021-04-15 02:33:44 +03:00
|
|
|
"version": "1.0.0-beta-rc.1",
|
2021-01-30 18:15:47 +03:00
|
|
|
"description": "Tauri API definitions",
|
2021-02-05 02:49:16 +03:00
|
|
|
"main": "./dist/index.js",
|
2021-04-15 02:04:20 +03:00
|
|
|
"files": [
|
|
|
|
"dist"
|
|
|
|
],
|
2021-02-05 02:49:16 +03:00
|
|
|
"exports": {
|
|
|
|
".": "./dist/index.js",
|
2021-04-08 18:50:55 +03:00
|
|
|
"./app": "./dist/app.js",
|
2021-02-05 02:49:16 +03:00
|
|
|
"./cli": "./dist/cli.js",
|
|
|
|
"./dialog": "./dist/dialog.js",
|
|
|
|
"./event": "./dist/event.js",
|
2021-04-05 20:51:17 +03:00
|
|
|
"./updater": "./dist/updater.js",
|
2021-02-05 02:49:16 +03:00
|
|
|
"./fs": "./dist/fs.js",
|
2021-02-12 08:42:40 +03:00
|
|
|
"./path": "./dist/path.js",
|
2021-02-05 02:49:16 +03:00
|
|
|
"./http": "./dist/http.js",
|
|
|
|
"./notification": "./dist/notification.js",
|
|
|
|
"./tauri": "./dist/tauri.js",
|
2021-02-12 08:42:40 +03:00
|
|
|
"./window": "./dist/window.js",
|
2021-02-14 23:34:23 +03:00
|
|
|
"./shell": "./dist/shell.js",
|
|
|
|
"./globalShortcut": "./dist/globalShortcut.js"
|
2021-02-05 02:49:16 +03:00
|
|
|
},
|
2021-01-30 18:15:47 +03:00
|
|
|
"funding": {
|
|
|
|
"type": "opencollective",
|
|
|
|
"url": "https://opencollective.com/tauri"
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"build": "rimraf ./dist && rollup -c --silent",
|
|
|
|
"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 \"./**/*.{js,jsx,ts,tsx,html,css,json}\" --ignore-path .gitignore",
|
|
|
|
"format:check": "prettier --check --end-of-line=auto \"./**/*.{js,jsx,ts,tsx,html,css,json}\" --ignore-path .gitignore"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/tauri-apps/tauri.git"
|
|
|
|
},
|
|
|
|
"contributors": [
|
|
|
|
"Tauri Team <team@tauri-apps.org> (https://tauri.studio)",
|
|
|
|
"Daniel Thompson-Yvetot <denjell@sfosc.org>",
|
|
|
|
"Lucas Fernandes Gonçalves Nogueira <lucas@tauri.studio>"
|
|
|
|
],
|
2021-04-11 01:09:09 +03:00
|
|
|
"license": "Apache-2.0 OR MIT",
|
2021-01-30 18:15:47 +03:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/tauri-apps/tauri/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/tauri-apps/tauri#readme",
|
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">= 10.17.0",
|
|
|
|
"npm": ">= 6.6.0",
|
|
|
|
"yarn": ">= 1.19.1"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-03-31 07:14:33 +03:00
|
|
|
"@babel/core": "7.13.14",
|
2021-03-24 08:18:05 +03:00
|
|
|
"@babel/preset-env": "7.13.12",
|
2021-02-24 21:03:32 +03:00
|
|
|
"@babel/preset-typescript": "7.13.0",
|
2021-02-18 01:52:07 +03:00
|
|
|
"@rollup/plugin-babel": "5.3.0",
|
2021-03-31 08:29:46 +03:00
|
|
|
"@rollup/plugin-commonjs": "18.0.0",
|
2021-03-31 07:14:33 +03:00
|
|
|
"@rollup/plugin-node-resolve": "11.2.1",
|
2021-01-30 18:15:47 +03:00
|
|
|
"@rollup/plugin-sucrase": "3.1.0",
|
2021-03-31 07:14:33 +03:00
|
|
|
"@rollup/plugin-typescript": "8.2.1",
|
2021-04-08 15:36:57 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "4.21.0",
|
|
|
|
"@typescript-eslint/parser": "4.21.0",
|
2021-03-31 07:14:33 +03:00
|
|
|
"eslint": "7.23.0",
|
2021-03-08 04:43:36 +03:00
|
|
|
"eslint-config-prettier": "8.1.0",
|
2021-02-04 00:32:18 +03:00
|
|
|
"eslint-config-standard-with-typescript": "20.0.0",
|
2021-01-30 18:15:47 +03:00
|
|
|
"eslint-plugin-import": "2.22.1",
|
|
|
|
"eslint-plugin-lodash-template": "0.19.0",
|
|
|
|
"eslint-plugin-node": "11.1.0",
|
2021-02-11 06:13:19 +03:00
|
|
|
"eslint-plugin-promise": "4.3.1",
|
2021-01-30 18:15:47 +03:00
|
|
|
"eslint-plugin-security": "1.4.0",
|
2021-03-08 03:58:05 +03:00
|
|
|
"lockfile-lint": "4.6.2",
|
2021-03-06 03:13:28 +03:00
|
|
|
"lodash": "4.17.21",
|
2021-01-30 18:15:47 +03:00
|
|
|
"prettier": "2.2.1",
|
2021-02-18 01:52:07 +03:00
|
|
|
"regenerator-runtime": "0.13.7",
|
2021-01-30 18:15:47 +03:00
|
|
|
"rimraf": "3.0.2",
|
2021-03-31 07:14:33 +03:00
|
|
|
"rollup": "2.44.0",
|
2021-01-30 18:15:47 +03:00
|
|
|
"rollup-plugin-terser": "7.0.2",
|
2021-04-08 15:36:57 +03:00
|
|
|
"tslib": "2.2.0",
|
2021-04-13 04:44:02 +03:00
|
|
|
"typedoc": "^0.20.35",
|
|
|
|
"typedoc-plugin-markdown": "^3.6.1",
|
2021-04-08 15:36:57 +03:00
|
|
|
"typescript": "4.2.4"
|
2021-01-30 18:15:47 +03:00
|
|
|
},
|
|
|
|
"resolutions": {
|
|
|
|
"**/lodash": ">=4.17.19"
|
|
|
|
}
|
|
|
|
}
|