/
githubmirror
/
tauri
Обзор
Документация
Войти
/
githubmirror
/
tauri
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
crates/tauri-cli/templates/plugin/package.json
33 строки
736 B
renovate[bot]
chore(deps): update dependency typescript to v6 (#15158)
18 апр 2026, 07:20
Не верифицирован
18 апр 2026, 07:20
b536dce
Код
Авторство
О чём код?
{ "name": "tauri-plugin-{{ plugin_name }}-api", "version": "0.1.0", "author": "{{ author }}", "description": "", "type": "module", "types": "./dist-js/index.d.ts", "main": "./dist-js/index.cjs", "module": "./dist-js/index.js", "exports": { "types": "./dist-js/index.d.ts", "import": "./dist-js/index.js", "require": "./dist-js/index.cjs" }, "files": [ "dist-js", "README.md" ], "scripts": { "build": "rollup -c", "prepublishOnly": "pnpm build", "pretest": "pnpm build" }, "dependencies": { "@tauri-apps/api": "^2.0.0" }, "devDependencies": { "@rollup/plugin-typescript": "^12.0.0", "rollup": "^4.9.6", "typescript": "^6.0.0", "tslib": "^2.6.2" } }