pixelmuse 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,94 @@
1
+ {
2
+ "name": "pixelmuse",
3
+ "version": "0.2.0",
4
+ "description": "AI image generation from the terminal — CLI, TUI, and MCP server for text-to-image with Flux, Imagen, Recraft, and more",
5
+ "homepage": "https://pixelmuse.studio",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/starmorph/pixelmuse-cli.git"
9
+ },
10
+ "bugs": {
11
+ "url": "https://github.com/starmorph/pixelmuse-cli/issues"
12
+ },
13
+ "author": "StarMorph LLC",
14
+ "type": "module",
15
+ "bin": {
16
+ "pixelmuse": "dist/cli.js",
17
+ "pixelmuse-mcp": "dist/mcp/server.js"
18
+ },
19
+ "files": [
20
+ "dist"
21
+ ],
22
+ "scripts": {
23
+ "build": "tsup",
24
+ "dev": "tsup --watch",
25
+ "start": "node dist/cli.js",
26
+ "typecheck": "tsc --noEmit",
27
+ "lint": "eslint src/",
28
+ "lint:fix": "eslint src/ --fix",
29
+ "test": "vitest run",
30
+ "test:watch": "vitest",
31
+ "ci": "pnpm lint && pnpm typecheck && pnpm build && pnpm test"
32
+ },
33
+ "keywords": [
34
+ "cli",
35
+ "image-generation",
36
+ "ai",
37
+ "tui",
38
+ "terminal",
39
+ "pixelmuse",
40
+ "text-to-image",
41
+ "mcp",
42
+ "mcp-server",
43
+ "model-context-protocol",
44
+ "claude",
45
+ "ai-art",
46
+ "flux",
47
+ "imagen",
48
+ "recraft",
49
+ "stable-diffusion",
50
+ "generative-ai",
51
+ "creative-tools",
52
+ "developer-tools",
53
+ "api-client"
54
+ ],
55
+ "license": "BUSL-1.1",
56
+ "dependencies": {
57
+ "@inkjs/ui": "^2.0.0",
58
+ "@modelcontextprotocol/sdk": "^1.27.1",
59
+ "chalk": "^5.4.1",
60
+ "env-paths": "^3.0.0",
61
+ "ink": "^6.0.0",
62
+ "meow": "^13.2.0",
63
+ "open": "^10.1.0",
64
+ "ora": "^9.3.0",
65
+ "react": "^19.2.4",
66
+ "yaml": "^2.7.0",
67
+ "zod": "^4.3.6"
68
+ },
69
+ "optionalDependencies": {
70
+ "keyring-node": "^1.0.1"
71
+ },
72
+ "devDependencies": {
73
+ "@eslint/js": "^10.0.1",
74
+ "@types/node": "^25.3.2",
75
+ "@types/react": "^19.2.14",
76
+ "eslint": "^10.0.2",
77
+ "globals": "^17.3.0",
78
+ "tsup": "^8.3.6",
79
+ "typescript": "^5.7.3",
80
+ "typescript-eslint": "^8.56.1",
81
+ "vitest": "^4.0.18"
82
+ },
83
+ "engines": {
84
+ "node": ">=20"
85
+ },
86
+ "pnpm": {
87
+ "onlyBuiltDependencies": [
88
+ "esbuild"
89
+ ],
90
+ "overrides": {
91
+ "phin@<3.7.1": ">=3.7.1"
92
+ }
93
+ }
94
+ }