-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.23 KB
/
Copy pathpackage.json
File metadata and controls
128 lines (128 loc) · 3.23 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
{
"name": "codex-notes",
"displayName": "Codex Notes",
"description": "A powerful plugin for managing notes directly within your IDE. Keep your thoughts, code snippets, and documentation organized without leaving your development environment",
"version": "2.5.0",
"license": "MIT",
"publisher": "stanleygomes",
"repository": "https://github.com/stanleygomes/codex-notes",
"engines": {
"vscode": "^1.85.0",
"node": "24.x"
},
"categories": [
"Other"
],
"icon": "resources/icons/icon.png",
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "codexNotesContainer",
"title": "Codex Notes",
"icon": "resources/icons/tab-icon.png"
}
]
},
"views": {
"codexNotesContainer": [
{
"type": "webview",
"id": "codexNotes.notesView",
"name": "Explorer",
"icon": "resources/icons/tab-icon.png"
}
]
},
"commands": [
{
"command": "codexNotes.createNote",
"title": "New Note",
"category": "Codex Notes",
"icon": "$(add)"
},
{
"command": "codexNotes.createNoteFromSelection",
"title": "Create Codex Note from Selection",
"category": "Codex Notes"
},
{
"command": "codexNotes.refreshNotes",
"title": "Refresh Notes",
"category": "Codex Notes",
"icon": "$(refresh)"
},
{
"command": "codexNotes.openNotesFile",
"title": "Open notes.json",
"category": "Codex Notes",
"icon": "$(file-code)"
},
{
"command": "codexNotes.searchNotes",
"title": "Search Notes",
"category": "Codex Notes"
}
],
"menus": {
"editor/context": [
{
"command": "codexNotes.createNoteFromSelection",
"when": "editorHasSelection",
"group": "codexNotes"
}
],
"view/title": [
{
"command": "codexNotes.createNote",
"when": "view == codexNotes.notesView",
"group": "navigation@1"
},
{
"command": "codexNotes.openNotesFile",
"when": "view == codexNotes.notesView",
"group": "navigation@2"
},
{
"command": "codexNotes.refreshNotes",
"when": "view == codexNotes.notesView",
"group": "navigation@3"
}
]
},
"keybindings": [
{
"command": "codexNotes.createNote",
"key": "ctrl+alt+n",
"mac": "cmd+alt+n"
}
],
"quickAccess": [
{
"prefix": "n",
"placeholder": "Search Codex Notes...",
"command": "codexNotes.searchNotes"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "eslint src",
"format:check": "prettier --check .",
"format:fix": "prettier --write ."
},
"dependencies": {},
"devDependencies": {
"@types/node": "22.x",
"@types/vscode": "^1.85.0",
"eslint": "^9.39.3",
"prettier": "^3.8.3",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
}
}