forked from pablodelucca/pixel-agents
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.88 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.88 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
91
92
93
94
{
"name": "pixel-agents",
"displayName": "Pixel Agents",
"description": "Pixel art office where your Claude Code agents come to life as animated characters",
"version": "1.1.1",
"publisher": "pablodelucca",
"repository": {
"type": "git",
"url": "https://github.com/pablodelucca/pixel-agents"
},
"icon": "icon.png",
"license": "MIT",
"engines": {
"vscode": "^1.105.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "pixel-agents.showPanel",
"title": "Pixel Agents: Show Panel"
},
{
"command": "pixel-agents.exportDefaultLayout",
"title": "Pixel Agents: Export Layout as Default"
}
],
"viewsContainers": {
"panel": [
{
"id": "pixel-agents-panel",
"title": "Pixel Agents",
"icon": "$(window)"
}
]
},
"views": {
"pixel-agents-panel": [
{
"type": "webview",
"id": "pixel-agents.panelView",
"name": "Pixel Agents"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"build:webview": "cd webview-ui && npm run build",
"compile": "npm run check-types && npm run lint && node esbuild.js && npm run build:webview",
"build": "npm run compile",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "npm run check-types && npm run lint && node esbuild.js --production && npm run build:webview",
"check-types": "tsc --noEmit",
"prepare": "husky",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"lint:webview": "cd webview-ui && npm run lint",
"lint:webview:fix": "cd webview-ui && eslint . --fix",
"import-tileset": "tsx scripts/import-tileset-cli.ts",
"format": "prettier --write \"src/**/*.ts\" \"webview-ui/src/**/*.{ts,tsx,css}\" \"*.{js,mjs}\" \"webview-ui/*.{js,ts}\"",
"format:check": "prettier --check \"src/**/*.ts\" \"webview-ui/src/**/*.{ts,tsx,css}\" \"*.{js,mjs}\" \"webview-ui/*.{js,ts}\""
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"@types/node": "25.x",
"@types/pngjs": "^6.0.5",
"@types/vscode": "^1.105.0",
"esbuild": "^0.27.2",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"npm-run-all": "^4.1.5",
"pngjs": "^7.0.0",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0"
},
"lint-staged": {
"src/**/*.ts": "eslint --fix",
"webview-ui/src/**/*.{ts,tsx}": "eslint --fix",
"*.{ts,tsx,js,mjs,css,json,md}": "prettier --write",
"webview-ui/**/*.{ts,tsx,js,css,json}": "prettier --write"
}
}