2021-01-30 15:15:47 +00:00
|
|
|
{
|
|
|
|
|
"name": "@tauri-apps/api",
|
2025-11-30 10:22:38 +00:00
|
|
|
"version": "2.9.1",
|
2021-01-30 15:15:47 +00: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 18:39:24 +00:00
|
|
|
"Tauri Programme within The Commons Conservancy"
|
2021-01-30 15:15:47 +00:00
|
|
|
],
|
2021-04-10 22:09:09 +00:00
|
|
|
"license": "Apache-2.0 OR MIT",
|
2021-01-30 15:15:47 +00:00
|
|
|
"bugs": {
|
|
|
|
|
"url": "https://github.com/tauri-apps/tauri/issues"
|
|
|
|
|
},
|
|
|
|
|
"homepage": "https://github.com/tauri-apps/tauri#readme",
|
2023-10-23 21:22:00 +00:00
|
|
|
"type": "module",
|
2023-11-20 21:13:50 +00:00
|
|
|
"main": "./index.cjs",
|
|
|
|
|
"module": "./index.js",
|
2024-04-22 14:18:00 +00:00
|
|
|
"types": "./index.d.ts",
|
2023-11-20 21:13:50 +00:00
|
|
|
"exports": {
|
2023-12-14 16:27:31 +00:00
|
|
|
".": {
|
|
|
|
|
"import": "./index.js",
|
2024-04-22 14:18:00 +00:00
|
|
|
"require": "./index.cjs",
|
|
|
|
|
"types": "./index.d.ts"
|
2023-12-14 16:27:31 +00:00
|
|
|
},
|
|
|
|
|
"./*": {
|
|
|
|
|
"import": "./*.js",
|
2024-04-22 14:18:00 +00:00
|
|
|
"require": "./*.cjs",
|
|
|
|
|
"types": "./*.d.ts"
|
2023-12-14 16:27:31 +00:00
|
|
|
},
|
2023-11-20 21:13:50 +00:00
|
|
|
"./package.json": "./package.json"
|
|
|
|
|
},
|
2023-10-23 21:22:00 +00:00
|
|
|
"scripts": {
|
2025-03-16 10:11:42 +00:00
|
|
|
"build": "rollup -c --configPlugin typescript",
|
2025-03-15 15:51:40 +00:00
|
|
|
"build:debug": "rollup -c --configPlugin typescript",
|
2024-08-17 02:04:08 +00:00
|
|
|
"npm-pack": "pnpm build && cd ./dist && npm pack",
|
2024-10-04 13:13:57 +00:00
|
|
|
"npm-publish": "pnpm build && cd ./dist && pnpm publish --access public --loglevel silly --no-git-checks",
|
2024-06-14 02:28:06 +00:00
|
|
|
"ts:check": "tsc --noEmit",
|
2024-11-05 21:30:17 +00:00
|
|
|
"eslint:check": "eslint src/**/*.ts",
|
|
|
|
|
"eslint:fix": "eslint src/**/*.ts --fix"
|
2021-01-30 15:15:47 +00:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2025-06-20 12:13:16 +00:00
|
|
|
"@eslint/js": "^9.29.0",
|
2023-10-23 21:22:00 +00:00
|
|
|
"@rollup/plugin-terser": "0.4.4",
|
2025-10-28 07:57:47 +00:00
|
|
|
"@rollup/plugin-typescript": "12.3.0",
|
2025-02-27 09:15:32 +00:00
|
|
|
"@types/eslint": "^9.6.1",
|
2025-11-04 10:27:01 +00:00
|
|
|
"@types/node": "^24.0.0",
|
2025-06-20 12:13:16 +00:00
|
|
|
"eslint": "^9.29.0",
|
2025-07-21 02:23:19 +00:00
|
|
|
"eslint-config-prettier": "10.1.8",
|
2024-07-12 14:07:49 +00:00
|
|
|
"eslint-plugin-security": "3.0.1",
|
2025-01-05 11:46:30 +00:00
|
|
|
"fast-glob": "3.3.3",
|
2026-01-15 11:28:04 +00:00
|
|
|
"globals": "^17.0.0",
|
2026-01-15 10:51:21 +00:00
|
|
|
"rollup": "4.55.1",
|
2025-02-27 09:15:32 +00:00
|
|
|
"tslib": "^2.8.1",
|
2025-04-13 01:04:40 +00:00
|
|
|
"typescript": "^5.8.3",
|
2025-06-20 12:13:16 +00:00
|
|
|
"typescript-eslint": "^8.34.1"
|
2021-01-30 15:15:47 +00:00
|
|
|
}
|
2024-02-19 18:49:28 +00:00
|
|
|
}
|