-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.24 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@ag9898/buddy",
"version": "1.0.3",
"description": "Windows floating desktop pet for Codex CLI and Claude Code",
"main": "out/main/main.js",
"bin": {
"buddy": "out/cli/index.js"
},
"scripts": {
"dev": "electron-vite dev",
"build": "npm run build:app && electron-builder",
"build:app": "electron-vite build && vite build --config vite.cli.config.ts",
"build:win:local": "npm run build:app && electron-builder --win --config.win.signAndEditExecutable=false --publish never",
"lint": "svelte-check --tsconfig ./tsconfig.json && tsc --noEmit -p tsconfig.node.json",
"typecheck": "tsc --noEmit -p tsconfig.node.json && svelte-check --tsconfig ./tsconfig.json",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"prepack": "npm run build:app"
},
"dependencies": {
"commander": "^12.0.0"
},
"optionalDependencies": {
"electron": "^35.0.0"
},
"devDependencies": {
"@playwright/test": "^1.50.0",
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"@testing-library/svelte": "^5.2.8",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^2.0.0",
"electron": "^35.0.0",
"electron-builder": "^25.0.0",
"electron-vite": "^3.0.0",
"jsdom": "^25.0.1",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"vitest": "^2.0.0"
},
"license": "MIT",
"author": "AG9898",
"homepage": "https://github.com/AG9898/buddy#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/AG9898/buddy.git"
},
"bugs": {
"url": "https://github.com/AG9898/buddy/issues"
},
"keywords": [
"buddy",
"desktop-pet",
"electron",
"codex",
"claude-code",
"wsl"
],
"engines": {
"node": ">=18"
},
"os": [
"win32",
"linux"
],
"cpu": [
"x64"
],
"private": false,
"publishConfig": {
"access": "public"
},
"files": [
"out/**/*",
"pets/**/*",
"build/icon.ico",
"electron-builder.yml",
"docs/CLI.md",
"docs/ENV_VARS.md",
"docs/TESTING.md",
"docs/ARCHITECTURE.md",
"docs/PRD.md",
"docs/CONVENTIONS.md",
"docs/DECISIONS.md",
"CHANGELOG.md"
]
}