-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
152 lines (152 loc) · 5.33 KB
/
package.json
File metadata and controls
152 lines (152 loc) · 5.33 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"name": "aisx",
"displayName": "AI Session Xplorer",
"version": "2.0.0",
"description": "View, search, and revisit your Claude Code or Codex AI session history with directly in VS Code + An analytical dashboard showing you the science behind agent behavior in your chat sessions.",
"publisher": "jerlendds",
"private": false,
"preview": false,
"repository": {
"type": "git",
"url": "git+https://github.com/jerlendds/vscode-AIsx.git"
},
"author": {
"name": "jerlendds"
},
"license": "MIT",
"keywords": ["claude", "codex", "history", "ai", "chat", "sessions", "aisx"],
"categories": ["Other"],
"main": "./out/src/extension.js",
"icon": "assets/logo.png",
"packageManager": "pnpm@9.9.0",
"engines": {
"vscode": "^1.90.0"
},
"activationEvents": [],
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "aisx",
"title": "AI Session Xplorer",
"icon": "media/icon.svg"
}
]
},
"views": {
"aisx": [
{
"id": "aisx.sessions",
"name": "Sessions",
"type": "webview"
}
]
},
"commands": [
{
"command": "aisx.refresh",
"title": "Refresh Sessions",
"icon": "$(refresh)",
"category": "AIsx"
},
{
"command": "aisx.openSession",
"title": "Open Session",
"category": "AIsx"
},
{
"command": "aisx.openAnalytics",
"title": "Open Analytics Dashboard",
"icon": "media/analytics-icon.svg",
"category": "AIsx"
}
],
"menus": {
"view/title": [
{
"command": "aisx.refresh",
"when": "view == aisx.sessions",
"group": "navigation"
},
{
"command": "aisx.openAnalytics",
"when": "view == aisx.sessions",
"group": "navigation"
}
]
},
"configuration": {
"title": "AIsx Analytics",
"properties": {
"aisx.analytics.pythonVenvPath": {
"type": "string",
"default": "",
"description": "Path to Python virtual environment with agent_fields installed (e.g. /home/user/myenv). Run: pip install git+https://github.com/technoyoda/aft.git"
},
"aisx.analytics.customScriptsPath": {
"type": "string",
"default": "",
"description": "Path to a directory containing custom .js measurement scripts. Each file should export measure(session) and label."
},
"aisx.analytics.maxSessions": {
"type": "number",
"default": 50,
"minimum": 5,
"maximum": 500,
"description": "Maximum number of most-recent sessions to load for analysis."
}
}
}
},
"eslintConfig": {
"extends": "@yutengjing/eslint-config-typescript",
"ignorePatterns": ["test-workspace"]
},
"prettier": "@yutengjing/prettier-config",
"lint-staged": {
"*.{ts,json,md}": ["eslint --fix", "prettier --write"]
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"scripts": {
"vscode:prepublish": "pnpm esbuild:base --minify",
"preinstall": "npx only-allow pnpm",
"postinstall": "stale-dep -u",
"clean": "npx rimraf -rf ./out",
"esbuild:base": "stale-dep && tsx scripts/esbuild.ts",
"esbuild:watch": "pnpm esbuild:base --sourcemap --watch",
"esbuild:analyze": "pnpm esbuild:base --minify --metafile --analyze && esbuild-visualizer --metadata ./meta.json --open",
"compile:test": "pnpm clean && tsc -b ./test/tsconfig.json",
"lint": "eslint src --ext ts",
"test": "stale-dep && pnpm compile:test && node ./out/test/runTests.js",
"pkg": "vsce package --no-dependencies",
"release": "npx @yutengjing/release",
"publish:vs-marketplace": "vsce publish --no-dependencies",
"publish:open-vsx": "ovsx publish --no-dependencies"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.7",
"@types/node": "~20.16.2",
"@types/vscode": "1.90.0",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^3.0.0",
"@yutengjing/eslint-config-typescript": "^1.2.2",
"@yutengjing/prettier-config": "^1.3.0",
"@yutengjing/release": "^0.3.1",
"esbuild": "~0.23.1",
"esbuild-visualizer": "^0.6.0",
"eslint": "^8.57.0",
"glob": "^11.0.0",
"lint-staged": "^15.2.9",
"mocha": "^10.7.3",
"ovsx": "^0.9.2",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.11.1",
"stale-dep": "^0.7.0",
"tsx": "^4.19.0",
"typescript": "~5.5.4"
}
}