-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
179 lines (179 loc) · 4.76 KB
/
Copy pathpackage.json
File metadata and controls
179 lines (179 loc) · 4.76 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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
{
"name": "lambda-foundation",
"displayName": "λ-Foundation: Compositional Consciousness",
"description": "Morphism-based code composition with formal proofs. Pure resonance, zero generation.",
"version": "0.1.0",
"publisher": "s0fractal",
"icon": "icon.png",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/s0fractal/lambda-foundation"
},
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Programming Languages",
"Machine Learning",
"Other"
],
"keywords": [
"lambda-calculus",
"morphisms",
"formal-proofs",
"compositional",
"consciousness",
"resonance",
"noosphere",
"ai-collaboration"
],
"activationEvents": [
"onLanguage:typescript",
"onLanguage:javascript",
"onCommand:lambda.openNoosphere"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "lambda.compose",
"title": "λ: Compose from Morphisms",
"category": "λ-Foundation"
},
{
"command": "lambda.showProof",
"title": "λ: Show Formal Proof",
"category": "λ-Foundation"
},
{
"command": "lambda.openNoosphere",
"title": "λ: Open Noosphere Panel",
"category": "λ-Foundation"
},
{
"command": "lambda.checkResonance",
"title": "λ: Check Resonance",
"category": "λ-Foundation"
},
{
"command": "lambda.explain",
"title": "λ: Explain Morphism",
"category": "λ-Foundation"
},
{
"command": "lambda.openProofViewer",
"title": "λ: Open Proof Viewer",
"category": "λ-Foundation"
},
{
"command": "lambda.openStatsDashboard",
"title": "λ: Open Statistics Dashboard",
"category": "λ-Foundation"
},
{
"command": "lambda.openEvolutionTracker",
"title": "λ: Open Evolution Tracker",
"category": "λ-Foundation"
},
{
"command": "lambda.openResonanceNetwork",
"title": "λ: Open Resonance Network",
"category": "λ-Foundation"
}
],
"configuration": {
"title": "λ-Foundation",
"properties": {
"lambda.resonance.autoCheck": {
"type": "boolean",
"default": true,
"description": "Automatically check resonance while typing"
},
"lambda.resonance.minConfidence": {
"type": "number",
"default": 70,
"minimum": 0,
"maximum": 100,
"description": "Minimum confidence threshold (%) for showing suggestions"
},
"lambda.suggestions.showProofs": {
"type": "boolean",
"default": true,
"description": "Show formal proof links in suggestions"
},
"lambda.statusBar.show": {
"type": "boolean",
"default": true,
"description": "Show resonance indicator in status bar"
},
"lambda.statusBar.showConfidence": {
"type": "boolean",
"default": true,
"description": "Show confidence percentage in status bar"
},
"lambda.statusBar.showMorphisms": {
"type": "boolean",
"default": true,
"description": "Show morphism names in status bar tooltip"
}
}
},
"keybindings": [
{
"command": "lambda.compose",
"key": "ctrl+shift+m",
"mac": "cmd+shift+m",
"when": "editorTextFocus"
},
{
"command": "lambda.checkResonance",
"key": "ctrl+shift+r",
"mac": "cmd+shift+r",
"when": "editorTextFocus"
},
{
"command": "lambda.openNoosphere",
"key": "ctrl+shift+n",
"mac": "cmd+shift+n"
},
{
"command": "lambda.openStatsDashboard",
"key": "ctrl+shift+s",
"mac": "cmd+shift+s"
},
{
"command": "lambda.openEvolutionTracker",
"key": "ctrl+shift+e",
"mac": "cmd+shift+e"
},
{
"command": "lambda.openResonanceNetwork",
"key": "ctrl+shift+a",
"mac": "cmd+shift+a"
}
]
},
"scripts": {
"vscode:prepublish": "pnpm run build",
"build": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "node ./out/test/runTest.js",
"lint": "eslint src --ext ts",
"package": "vsce package"
},
"dependencies": {
"@lambda/reduce": "workspace:*",
"@lambda-foundation/synthesis": "workspace:*"
},
"devDependencies": {
"@types/vscode": "^1.85.0",
"@types/node": "^20.0.0",
"@vscode/test-electron": "^2.3.0",
"typescript": "^5.3.0",
"eslint": "^8.56.0",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"@vscode/vsce": "^2.22.0"
}
}