2021-01-30 18:15:47 +03:00
|
|
|
{
|
|
|
|
"name": "@tauri-apps/api",
|
2024-08-19 15:48:54 +03:00
|
|
|
"version": "2.0.0-rc.2",
|
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",
|
2024-04-22 17:18:00 +03:00
|
|
|
"types": "./index.d.ts",
|
2023-11-21 00:13:50 +03:00
|
|
|
"exports": {
|
2023-12-14 19:27:31 +03:00
|
|
|
".": {
|
|
|
|
"import": "./index.js",
|
2024-04-22 17:18:00 +03:00
|
|
|
"require": "./index.cjs",
|
|
|
|
"types": "./index.d.ts"
|
2023-12-14 19:27:31 +03:00
|
|
|
},
|
|
|
|
"./*": {
|
|
|
|
"import": "./*.js",
|
2024-04-22 17:18:00 +03:00
|
|
|
"require": "./*.cjs",
|
|
|
|
"types": "./*.d.ts"
|
2023-12-14 19:27:31 +03:00
|
|
|
},
|
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",
|
2024-08-17 05:04:08 +03:00
|
|
|
"npm-pack": "pnpm build && cd ./dist && npm pack",
|
2024-08-17 06:12:24 +03:00
|
|
|
"npm-publish": "pnpm build && cd ./dist && pnpm publish --access public --loglevel silly --tag next --no-git-checks",
|
2024-06-14 05:28:06 +03:00
|
|
|
"ts:check": "tsc --noEmit",
|
2024-08-17 05:04:08 +03:00
|
|
|
"eslint:check": "eslint src/**.ts",
|
|
|
|
"eslint:fix": "eslint src/**.ts --fix"
|
2021-01-30 18:15:47 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-06-14 05:28:06 +03:00
|
|
|
"@eslint/js": "^9.4.0",
|
2023-10-24 00:22:00 +03:00
|
|
|
"@rollup/plugin-terser": "0.4.4",
|
2024-03-03 16:30:35 +03:00
|
|
|
"@rollup/plugin-typescript": "11.1.6",
|
2024-08-15 16:51:46 +03:00
|
|
|
"@types/eslint": "^9.0.0",
|
2024-08-15 17:14:36 +03:00
|
|
|
"@types/node": "20.14.15",
|
2024-06-14 05:28:06 +03:00
|
|
|
"eslint": "^9.4.0",
|
2024-03-03 16:30:35 +03:00
|
|
|
"eslint-config-prettier": "9.1.0",
|
2024-07-12 17:07:49 +03:00
|
|
|
"eslint-plugin-security": "3.0.1",
|
2023-11-14 03:45:07 +03:00
|
|
|
"fast-glob": "3.3.2",
|
2024-06-14 05:28:06 +03:00
|
|
|
"globals": "^15.4.0",
|
2024-08-11 15:47:00 +03:00
|
|
|
"prettier": "3.3.3",
|
2024-08-15 17:14:36 +03:00
|
|
|
"rollup": "4.20.0",
|
2024-06-14 05:28:06 +03:00
|
|
|
"tslib": "^2.6.3",
|
|
|
|
"typescript": "^5.4.5",
|
2024-08-17 05:04:08 +03:00
|
|
|
"typescript-eslint": "^8.1.0"
|
2021-01-30 18:15:47 +03:00
|
|
|
}
|
2024-02-19 21:49:28 +03:00
|
|
|
}
|