2021-01-30 18:15:47 +03:00
|
|
|
{
|
|
|
|
"name": "@tauri-apps/api",
|
2024-02-03 16:59:09 +03:00
|
|
|
"version": "2.0.0-beta.0",
|
2021-01-30 18:15:47 +03:00
|
|
|
"description": "Tauri API definitions",
|
|
|
|
"funding": {
|
|
|
|
"type": "opencollective",
|
|
|
|
"url": "https://opencollective.com/tauri"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/tauri-apps/tauri.git"
|
|
|
|
},
|
|
|
|
"contributors": [
|
2021-05-10 21:39:24 +03:00
|
|
|
"Tauri Programme within The Commons Conservancy"
|
2021-01-30 18:15:47 +03:00
|
|
|
],
|
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",
|
2023-10-24 00:22:00 +03:00
|
|
|
"type": "module",
|
2023-11-21 00:13:50 +03:00
|
|
|
"main": "./index.cjs",
|
|
|
|
"module": "./index.js",
|
|
|
|
"exports": {
|
2023-12-14 19:27:31 +03:00
|
|
|
".": {
|
|
|
|
"import": "./index.js",
|
|
|
|
"require": "./index.cjs"
|
|
|
|
},
|
|
|
|
"./*": {
|
|
|
|
"import": "./*.js",
|
|
|
|
"require": "./*.cjs"
|
|
|
|
},
|
2023-11-21 00:13:50 +03:00
|
|
|
"./package.json": "./package.json"
|
|
|
|
},
|
2023-10-24 00:22:00 +03:00
|
|
|
"scripts": {
|
2023-11-19 14:38:24 +03:00
|
|
|
"build": "rollup -c --configPlugin typescript",
|
2023-10-24 00:22:00 +03:00
|
|
|
"npm-pack": "yarn build && cd ./dist && npm pack",
|
|
|
|
"npm-publish": "yarn build && cd ./dist && yarn publish --access public --loglevel silly --tag next",
|
2023-11-19 14:38:24 +03:00
|
|
|
"ts:check": "tsc -noEmit",
|
2023-10-24 00:22:00 +03:00
|
|
|
"lint": "eslint --ext ts \"./src/**/*.ts\"",
|
|
|
|
"lint:fix": "eslint --fix --ext ts \"./src/**/*.ts\"",
|
|
|
|
"format": "prettier --write . --config ../../.prettierrc --ignore-path .gitignore --ignore-path ../../.prettierignore",
|
|
|
|
"format:check": "prettier --check . --config ../../.prettierrc --ignore-path .gitignore --ignore-path ../../.prettierignore"
|
2021-01-30 18:15:47 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-10-24 00:22:00 +03:00
|
|
|
"@rollup/plugin-terser": "0.4.4",
|
|
|
|
"@rollup/plugin-typescript": "11.1.5",
|
2023-12-20 20:16:58 +03:00
|
|
|
"@types/node": "20.10.5",
|
2023-11-14 03:45:07 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "6.10.0",
|
|
|
|
"@typescript-eslint/parser": "6.10.0",
|
2023-12-20 20:16:58 +03:00
|
|
|
"eslint": "8.56.0",
|
2023-10-18 16:37:30 +03:00
|
|
|
"eslint-config-prettier": "9.0.0",
|
2023-12-20 20:16:58 +03:00
|
|
|
"eslint-plugin-import": "2.29.1",
|
2023-11-14 03:45:07 +03:00
|
|
|
"eslint-plugin-n": "16.3.0",
|
2021-01-30 18:15:47 +03:00
|
|
|
"eslint-plugin-node": "11.1.0",
|
2022-10-20 16:54:24 +03:00
|
|
|
"eslint-plugin-promise": "6.1.1",
|
2023-12-20 18:14:39 +03:00
|
|
|
"eslint-plugin-security": "2.1.0",
|
2023-11-14 03:45:07 +03:00
|
|
|
"fast-glob": "3.3.2",
|
2023-12-20 20:16:58 +03:00
|
|
|
"prettier": "3.1.1",
|
2023-11-14 03:45:07 +03:00
|
|
|
"rollup": "4.3.0",
|
2023-10-24 00:22:00 +03:00
|
|
|
"tslib": "2.6.2",
|
2023-12-20 20:16:58 +03:00
|
|
|
"typescript": "5.3.3"
|
2023-07-04 17:00:01 +03:00
|
|
|
},
|
2023-10-24 00:22:00 +03:00
|
|
|
"engines": {
|
|
|
|
"node": ">= 18",
|
|
|
|
"npm": ">= 6.6.0",
|
|
|
|
"yarn": ">= 1.19.1"
|
2021-01-30 18:15:47 +03:00
|
|
|
}
|
2024-02-19 14:03:05 +03:00
|
|
|
}
|