-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.14 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.14 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
{
"name": "pixelforge-mcp",
"version": "0.2.0",
"description": "MCP server that forges pixel art sprites & game assets using Google Gemini",
"author": "Tomas Grasl",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"bin": {
"pixelforge-mcp": "./dist/index.js"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsup",
"start": "node dist/index.js",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"test": "vitest",
"test:run": "vitest run",
"test:integration": "vitest run tests/integration",
"test:coverage": "vitest run --coverage",
"check": "npm run typecheck && npm run lint && npm run format:check",
"check:all": "npm run check && npm run test:run && npm run build",
"prepublishOnly": "npm run clean && npm run check && npm run test:run && npm run build",
"inspector": "npx @modelcontextprotocol/inspector node dist/index.js",
"inspector:dev": "npx @modelcontextprotocol/inspector npx tsx src/index.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.1",
"jpeg-js": "^0.4.4"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.1",
"tsup": "^8.0.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"mcp",
"mcp-server",
"pixel-art",
"sprite",
"game-assets",
"gemini",
"imagen",
"ai-art",
"model-context-protocol"
],
"repository": {
"type": "git",
"url": "git+https://github.com/freema/pixelforge-mcp.git"
},
"homepage": "https://github.com/freema/pixelforge-mcp#readme",
"publishConfig": {
"access": "public"
}
}