-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.42 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
{
"name": "openpet",
"version": "0.1.6",
"private": true,
"type": "module",
"description": "OpenPet desktop runtime for Codex-compatible pet companions.",
"license": "GPL-3.0-or-later",
"scripts": {
"dev": "node ./scripts/check-dev-port.mjs && vite --host 127.0.0.1",
"dev:browser": "vite --host 127.0.0.1 --mode browser",
"build": "tsc --noEmit && vite build",
"typecheck": "tsc --noEmit",
"e2e": "playwright test",
"e2e:tauri": "wdio run e2e-tauri/wdio.conf.mjs",
"e2e:ui": "playwright test --ui",
"release:check": "pnpm build && cargo check --manifest-path src-tauri/Cargo.toml",
"release:bundle": "pnpm release:check && pnpm tauri:build",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build"
},
"dependencies": {
"@tauri-apps/api": "^2.11.0",
"@tauri-apps/plugin-dialog": "~2.7.1",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.10.1",
"react": "^19.2.5",
"react-dom": "^19.2.5"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@tauri-apps/cli": "^2.11.0",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@wdio/cli": "^9.27.1",
"@wdio/local-runner": "^9.27.1",
"@wdio/mocha-framework": "^9.27.1",
"@wdio/spec-reporter": "^9.27.1",
"typescript": "^6.0.3",
"vite": "^8.0.10"
},
"packageManager": "pnpm@10.32.1"
}