Files
cinny-desktop/package.json
T

86 lines
2.3 KiB
JSON
Raw Normal View History

2022-04-29 19:52:14 +05:30
{
"name": "cinny",
2026-03-12 01:10:36 +11:00
"version": "4.11.2",
2022-04-29 19:52:14 +05:30
"description": "Yet another matrix client",
"main": "index.js",
"engines": {
2022-11-08 20:24:16 +05:30
"node": ">=16.0.0"
2022-04-29 19:52:14 +05:30
},
"scripts": {
2024-07-25 11:19:40 +05:30
"tauri": "cp config.json cinny/ && tauri",
2026-03-10 04:15:22 +00:00
"release": "node scripts/release.mjs",
"lint": "npm run check:eslint && npm run check:prettier",
"check:eslint": "eslint src/*",
"check:prettier": "prettier --check .",
"fix:prettier": "prettier --write .",
"typecheck": "tsc --noEmit",
"prepare": "husky install",
"commit": "git-cz",
"semantic-release": "semantic-release"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": "eslint",
"*": "prettier --ignore-unknown --write"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/exec",
{
2026-03-11 03:48:39 +00:00
"prepareCmd": "node scripts/update-version.mjs ${nextRelease.version}"
2026-03-10 04:15:22 +00:00
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json",
"package-lock.json",
"src-tauri/Cargo.toml",
"src-tauri/tauri.conf.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]"
}
],
"@semantic-release/github"
]
2022-04-29 19:52:14 +05:30
},
"keywords": [],
"author": "Ajay Bura",
2023-02-24 17:30:37 +05:30
"license": "AGPL-3.0-only",
2022-04-29 19:52:14 +05:30
"dependencies": {
2026-03-03 23:16:04 +11:00
"@tauri-apps/api": "2.7.0",
"@tauri-apps/plugin-clipboard-manager": "2.3.0",
"@tauri-apps/plugin-dialog": "2.3.2",
"@tauri-apps/plugin-fs": "2.4.1",
"@tauri-apps/plugin-global-shortcut": "2.3.0",
"@tauri-apps/plugin-http": "2.5.1",
"@tauri-apps/plugin-notification": "2.3.0",
"@tauri-apps/plugin-os": "2.3.0",
"@tauri-apps/plugin-process": "2.3.0",
"@tauri-apps/plugin-shell": "2.3.0",
"@tauri-apps/plugin-updater": "2.9.0"
2022-04-29 19:52:14 +05:30
},
"devDependencies": {
"@actions/github": "6.0.0",
2026-03-10 04:15:22 +00:00
"@semantic-release/exec": "7.1.0",
"@semantic-release/git": "10.0.1",
2026-03-03 23:16:04 +11:00
"@tauri-apps/cli": "2.7.1",
2026-03-10 04:15:22 +00:00
"cz-conventional-changelog": "3.3.0",
"husky": "9.1.7",
"lint-staged": "16.3.2",
"node-fetch": "3.3.2",
"semantic-release": "25.0.3"
2022-04-29 19:52:14 +05:30
}
}