Pre-launch — Gluecron is in final validation. Public signups and git hosting for non-owner users open after launch review.
CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
Blame · Line-by-line history

package.json

Each line is annotated with the commit that last touched it. Click any SHA to jump to that commit and see the surrounding change.

package.jsonBlame68 lines · 1 contributor
eae38d1Claude1{
2 "name": "gluecron-vscode",
3 "displayName": "Gluecron",
4 "description": "VS Code integration for Gluecron — AI-native code intelligence",
5 "version": "0.1.0",
6 "publisher": "gluecron",
7 "license": "MIT",
8 "engines": {
9 "vscode": "^1.80.0"
10 },
11 "categories": [
12 "SCM Providers",
13 "Other"
14 ],
15 "activationEvents": [
16 "onStartupFinished"
17 ],
18 "main": "./dist/extension.js",
19 "contributes": {
20 "commands": [
21 {
22 "command": "gluecron.explainFile",
23 "title": "Gluecron: Explain This File"
24 },
25 {
26 "command": "gluecron.openOnWeb",
27 "title": "Gluecron: Open Current File on Web"
28 },
29 {
30 "command": "gluecron.searchSemantic",
31 "title": "Gluecron: Semantic Search"
32 },
33 {
34 "command": "gluecron.generateTests",
35 "title": "Gluecron: Generate Tests for Current File"
36 }
37 ],
38 "configuration": {
39 "title": "Gluecron",
40 "properties": {
41 "gluecron.host": {
42 "type": "string",
43 "default": "http://localhost:3000",
44 "description": "Gluecron server URL"
45 },
46 "gluecron.token": {
47 "type": "string",
48 "default": "",
49 "description": "Personal access token (glc_...)"
50 }
51 }
52 },
53 "menus": {
54 "editor/context": [
55 { "command": "gluecron.explainFile", "group": "gluecron" },
56 { "command": "gluecron.openOnWeb", "group": "gluecron" }
57 ]
58 }
59 },
60 "scripts": {
61 "compile": "tsc -p .",
62 "watch": "tsc -watch -p ."
63 },
64 "devDependencies": {
65 "@types/vscode": "^1.80.0",
66 "typescript": "^5.3.0"
67 }
68}