-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.26 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "cli-proxy-api-ui",
"version": "0.1.8",
"description": "Desktop control panel for cli-proxy-api (no local web server)",
"type": "module",
"bin": {
"cli-proxy-api-ui": "./bin/cli-proxy-api-ui.js"
},
"files": [
"bin/",
"public/",
"src-tauri/src/",
"src-tauri/build.rs",
"src-tauri/Cargo.toml",
"src-tauri/tauri.conf.json",
"src-tauri/capabilities/",
"src-tauri/icons/",
"package.json",
"README.md"
],
"scripts": {
"start": "node bin/cli-proxy-api-ui.js",
"tauri": "tauri",
"desktop": "tauri dev",
"desktop:wayland": "WEBKIT_DISABLE_DMABUF_RENDERER=1 WEBKIT_DISABLE_COMPOSITING_MODE=1 tauri dev",
"build:binary": "tauri build --no-bundle",
"dist": "tauri build",
"check:rust": "cargo check --manifest-path src-tauri/Cargo.toml",
"ci:rust": "cargo fmt --check --manifest-path src-tauri/Cargo.toml && cargo clippy --manifest-path src-tauri/Cargo.toml -- -D warnings && cargo test --manifest-path src-tauri/Cargo.toml && cargo check --manifest-path src-tauri/Cargo.toml"
},
"keywords": [
"cli-proxy-api",
"linux",
"ui",
"tauri"
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {},
"devDependencies": {
"@tauri-apps/cli": "^2.0.0"
}
}