-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.95 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.95 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
{
"name": "squad-pod",
"displayName": "Squad Pod",
"description": "Pixel art office where your Squad agents come to life as animated characters",
"version": "0.1.0",
"publisher": "squad-pod",
"engines": {
"vscode": "^1.107.0"
},
"main": "./dist/extension.js",
"activationEvents": [],
"contributes": {
"commands": [
{
"command": "squad-pod.showPanel",
"title": "Squad Pod: Show Panel"
},
{
"command": "squad-pod.exportDefaultLayout",
"title": "Squad Pod: Export Default Layout"
}
],
"viewsContainers": {
"panel": [
{
"id": "squad-pod-panel",
"title": "Squad Pod",
"icon": "$(window)"
}
]
},
"views": {
"squad-pod-panel": [
{
"type": "webview",
"id": "squad-pod.panelView",
"name": "Squad Pod"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run check-types && npm run build",
"compile": "npm run check-types && node esbuild.js",
"build": "npm run check-types && node esbuild.js --production",
"build:webview": "cd webview-ui && npm run build",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "vsce package",
"check-types": "tsc --noEmit",
"lint": "eslint src",
"test": "vitest run",
"test:watch": "vitest",
"test:all": "vitest run && cd webview-ui && npx vitest run",
"import-tileset": "tsx scripts/0-import-tileset.ts"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.74.0",
"@types/node": "22.x",
"@types/pngjs": "^6.0.5",
"@types/vscode": "^1.107.0",
"esbuild": "^0.27.2",
"eslint": "^9.39.2",
"npm-run-all": "^4.1.5",
"pngjs": "^7.0.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.18"
},
"license": "MIT"
}