2021-01-30 18:15:47 +03:00
|
|
|
{
|
|
|
|
"name": "@tauri-apps/api",
|
2021-04-25 22:07:22 +03:00
|
|
|
"version": "1.0.0-beta-rc.3",
|
2021-01-30 18:15:47 +03:00
|
|
|
"description": "Tauri API definitions",
|
2021-04-22 21:39:59 +03:00
|
|
|
"type": "module",
|
2021-01-30 18:15:47 +03:00
|
|
|
"funding": {
|
|
|
|
"type": "opencollective",
|
|
|
|
"url": "https://opencollective.com/tauri"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2021-04-23 05:16:53 +03:00
|
|
|
"build": "rimraf ./dist && rollup -c --silent && node ./scripts/after-build.cjs",
|
2021-04-19 06:31:12 +03:00
|
|
|
"npm-pack": "yarn build && cd ./dist && npm pack",
|
|
|
|
"npm-publish": "yarn build && cd ./dist && yarn publish --access public --loglevel silly",
|
2021-01-30 18:15:47 +03:00
|
|
|
"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": {
|
2021-04-21 17:50:24 +03:00
|
|
|
"node": ">= 12.13.0",
|
2021-01-30 18:15:47 +03:00
|
|
|
"npm": ">= 6.6.0",
|
|
|
|
"yarn": ">= 1.19.1"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-04-29 00:23:31 +03:00
|
|
|
"@babel/core": "7.13.16",
|
|
|
|
"@babel/preset-env": "7.13.15",
|
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-29 00:23:31 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "4.22.0",
|
|
|
|
"@typescript-eslint/parser": "4.22.0",
|
|
|
|
"eslint": "7.25.0",
|
|
|
|
"eslint-config-prettier": "8.3.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-04-29 00:22:16 +03:00
|
|
|
"eslint-plugin-promise": "5.1.0",
|
2021-01-30 18:15:47 +03:00
|
|
|
"eslint-plugin-security": "1.4.0",
|
2021-04-23 05:16:53 +03:00
|
|
|
"fs-extra": "9.1.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-04-29 00:23:31 +03:00
|
|
|
"rollup": "2.45.2",
|
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-29 00:23:31 +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"
|
|
|
|
}
|
|
|
|
}
|