mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-03 22:26:43 +00:00

* Add some experiment code for crypto crate * feat: add crypto crate with ssl, rsa, ed25519 for https, encryption, signing * Implement aes encryption helper in crypto crate * ci: add dep for CI rust test (protobuf) * fix: try to fix window CI with next * fix: CI * ci: add dep for ubuntu * ci: fix * fix: openssl lib path in CI * fix: CI * update applications-rs, disable some tests * fix: CI * feat: add file transfer grpc proto and server setup * CI: try to fix CI * fix: missing proto in build.rs * ci: add cargo build before cargo test * fix: grpc file descriptor * ci: fix CI by removing a redundant main.rs * fix: disable local windows test in applications-rs which fails CI * ci: run CI rust test only on ubuntu, windows is failing. will be handled in another PR * fix: vue template * fix: allow unused variable * fix: remove node:buffer type from api shell.ts to avoid frontend build error * try to fix test in create-kunkun * upgrade api to 0.0.44, remove node:buffer * upgrade next template to 15 * feat: turn the default server into a https server * feat: make SSL certificate loadable from env * feat: add conditional SSL cert in debug mode, use local default cert, in production generate new self-signed cert every time app starts * chore: add vscode debug config * feat: add server public key * feat: setup sqlite db encryption * fix: settings hotkey * chore: add .gitkeep * ci: add node-fetch to dep for api package
74 lines
2.1 KiB
JSON
74 lines
2.1 KiB
JSON
{
|
|
"name": "@kksh/api",
|
|
"version": "0.0.44",
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./ui": "./src/ui/index.ts",
|
|
"./ui/iframe": "./src/ui/iframe/index.ts",
|
|
"./ui/worker": "./src/ui/worker/index.ts",
|
|
"./models": "./src/models/index.ts",
|
|
"./commands": "./src/commands/index.ts",
|
|
"./runtime/deno": "./src/runtime/deno.ts",
|
|
"./permissions": "./src/permissions/index.ts",
|
|
"./dev": "./src/dev/index.ts",
|
|
"./events": "./src/events.ts",
|
|
"./supabase": "./src/supabase/index.ts",
|
|
"./supabase/types": "./src/supabase/database.types.ts",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"test": "bun test --coverage",
|
|
"gen:deno:types": "deno types > deno.d.ts",
|
|
"build:docs": "npx typedoc",
|
|
"dev": "bun --watch build.ts",
|
|
"build": "bun build.ts",
|
|
"prepare": "bun setup.ts",
|
|
"format": "prettier --write \"**/*.{ts,tsx,md,vue,json,yaml,yml}\""
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest",
|
|
"@types/lodash": "^4.17.13",
|
|
"@types/madge": "^5.0.3",
|
|
"@types/node": "^22.8.7",
|
|
"@types/semver": "^7.5.8",
|
|
"fs-extra": "^11.2.0",
|
|
"madge": "^8.0.0",
|
|
"typedoc": "^0.26.11",
|
|
"typescript": "^5.6.3"
|
|
},
|
|
"dependencies": {
|
|
"@tauri-apps/api": "^2.1.1",
|
|
"@tauri-apps/cli": "^2.1.0",
|
|
"@tauri-apps/plugin-deep-link": "^2.0.0",
|
|
"@tauri-apps/plugin-dialog": "^2.0.1",
|
|
"@tauri-apps/plugin-fs": "^2.0.2",
|
|
"@tauri-apps/plugin-global-shortcut": "^2.0.0",
|
|
"@tauri-apps/plugin-http": "^2.0.1",
|
|
"@tauri-apps/plugin-log": "^2.0.0",
|
|
"@tauri-apps/plugin-notification": "^2.0.0",
|
|
"@tauri-apps/plugin-os": "^2.0.0",
|
|
"@tauri-apps/plugin-process": "2.0.0",
|
|
"@tauri-apps/plugin-shell": "^2.0.1",
|
|
"@tauri-apps/plugin-store": "^2.1.0",
|
|
"@tauri-apps/plugin-updater": "^2.0.0",
|
|
"@tauri-apps/plugin-upload": "^2.1.0",
|
|
"kkrpc": "^0.0.12",
|
|
"lodash": "^4.17.21",
|
|
"minimatch": "^10.0.1",
|
|
"node-fetch": "^3.3.2",
|
|
"semver": "^7.6.3",
|
|
"svelte-sonner": "^0.3.28",
|
|
"tauri-api-adapter": "^0.3.13",
|
|
"tauri-plugin-network-api": "2.0.4",
|
|
"tauri-plugin-shellx-api": "^2.0.14",
|
|
"tauri-plugin-system-info-api": "2.0.8",
|
|
"valibot": "^0.40.0"
|
|
},
|
|
"files": [
|
|
"src",
|
|
"dist"
|
|
]
|
|
}
|