-
Notifications
You must be signed in to change notification settings - Fork 996
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.42 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.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
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
95
96
97
98
99
100
101
102
{
"name": "pixel-agents",
"displayName": "Pixel Agents",
"description": "Pixel art office where your Claude Code agents come to life as animated characters",
"version": "1.3.0",
"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 && tsc --noEmit -p server/tsconfig.test.json",
"prepare": "husky",
"lint": "eslint src server shared && cd webview-ui && eslint .",
"lint:fix": "eslint src server shared --fix && cd webview-ui && eslint . --fix",
"import-tileset": "tsx scripts/import-tileset-cli.ts",
"format": "prettier --write \"src/**/*.ts\" \"server/**/*.ts\" \"shared/**/*.ts\" \"webview-ui/src/**/*.{ts,tsx,css}\" \"*.{js,mjs}\" \"webview-ui/*.{js,ts}\"",
"format:check": "prettier --check \"src/**/*.ts\" \"server/**/*.ts\" \"shared/**/*.ts\" \"webview-ui/src/**/*.{ts,tsx,css}\" \"*.{js,mjs}\" \"webview-ui/*.{js,ts}\"",
"test:webview": "cd webview-ui && npm test",
"test:server": "cd server && npm test",
"test": "npm run test:webview && npm run test:server",
"e2e": "playwright test --config e2e/playwright.config.ts",
"e2e:debug": "playwright test --config e2e/playwright.config.ts --debug",
"knip": "knip"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/node": "25.x",
"@types/pngjs": "^6.0.5",
"@types/vscode": "^1.105.0",
"@vscode/test-electron": "^2.5.2",
"esbuild": "^0.28.0",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.7",
"knip": "^6.3.0",
"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",
"server/**/*.ts": "eslint --fix",
"shared/**/*.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"
}
}