mirror of
https://github.com/kunkunsh/kunkun-ext-neohtop.git
synced 2025-04-03 01:16:43 +00:00
94 lines
2.5 KiB
JSON
94 lines
2.5 KiB
JSON
{
|
|
"$schema": "https://schema.kunkun.sh",
|
|
"name": "kunkun-ext-neohtop",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/kunkunsh/kunkun-ext-neohtop.git"
|
|
},
|
|
"version": "1.1.6",
|
|
"description": "",
|
|
"type": "module",
|
|
"kunkun": {
|
|
"name": "neohtop",
|
|
"shortDescription": "A modern, cross-platform system monitor",
|
|
"longDescription": "A modern, cross-platform system monitor",
|
|
"identifier": "neohtop",
|
|
"demoImages": [
|
|
"https://imgur.com/D8VHDEz.png"
|
|
],
|
|
"permissions": [
|
|
"system-info:all",
|
|
"shell:kill-any"
|
|
],
|
|
"icon": {
|
|
"type": "remote-url",
|
|
"value": "https://github.com/Abdenasser/neohtop/raw/main/app-icon.png"
|
|
},
|
|
"customUiCmds": [
|
|
{
|
|
"name": "neohtop",
|
|
"main": "/",
|
|
"dist": "build",
|
|
"devMain": "http://localhost:1420",
|
|
"cmds": [],
|
|
"window": {
|
|
"title": "Neohtop",
|
|
"hiddenTitle": true,
|
|
"titleBarStyle": "overlay",
|
|
"width": 1400,
|
|
"height": 1000
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"files": [
|
|
"build",
|
|
"README.md",
|
|
"package.json"
|
|
],
|
|
"scripts": {
|
|
"dev": "vite dev",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
|
|
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
|
|
"tauri": "tauri",
|
|
"format": "prettier --write ./src && cargo fmt --manifest-path src-tauri/Cargo.toml",
|
|
"format:check": "prettier --check ./src && cargo fmt --manifest-path src-tauri/Cargo.toml -- --check",
|
|
"prepare": "husky install"
|
|
},
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@fortawesome/fontawesome-svg-core": "^6.6.0",
|
|
"@fortawesome/free-solid-svg-icons": "^6.6.0",
|
|
"@kksh/api": "^0.1.6",
|
|
"@tauri-apps/api": "^2.0.3",
|
|
"@tauri-apps/plugin-os": "^2.0.0",
|
|
"@tauri-apps/plugin-shell": "^2.0.1",
|
|
"simple-icons": "^13.15.0",
|
|
"svelte-fa": "^4.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"@sveltejs/adapter-static": "^3.0.5",
|
|
"@sveltejs/kit": "^2.7.0",
|
|
"@sveltejs/vite-plugin-svelte": "^4.0.0",
|
|
"@tauri-apps/cli": "^2.0.4",
|
|
"husky": "^8.0.0",
|
|
"lint-staged": "^15.2.10",
|
|
"prettier": "^3.3.3",
|
|
"prettier-plugin-svelte": "^3.2.7",
|
|
"svelte": "^5.0.0",
|
|
"svelte-check": "^4.0.0",
|
|
"typescript": "^5.5.0",
|
|
"vite": "^5.4.10"
|
|
},
|
|
"lint-staged": {
|
|
"src/**/*.{js,ts,jsx,tsx,svelte}": [
|
|
"prettier --write"
|
|
],
|
|
"src-tauri/**/*.rs": [
|
|
"cargo fmt --manifest-path src-tauri/Cargo.toml --"
|
|
]
|
|
}
|
|
}
|