-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
168 lines (168 loc) · 4.5 KB
/
package.json
File metadata and controls
168 lines (168 loc) · 4.5 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
{
"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.4.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.exportNotes",
"title": "Export Notes",
"category": "Codex Notes"
},
{
"command": "codexNotes.importNotes",
"title": "Import Notes",
"category": "Codex Notes"
},
{
"command": "codexNotes.openBackup",
"title": "Backup & Sync",
"category": "Codex Notes",
"icon": "$(cloud-download)"
},
{
"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"
},
{
"command": "codexNotes.refreshNotes",
"when": "view == codexNotes.notesView",
"group": "navigation"
},
{
"command": "codexNotes.openBackup",
"when": "view == codexNotes.notesView",
"group": "navigation"
}
]
},
"keybindings": [
{
"command": "codexNotes.createNote",
"key": "ctrl+alt+n",
"mac": "cmd+alt+n"
}
],
"configuration": {
"title": "Codex Notes",
"properties": {
"codexNotes.fileExtension": {
"type": "string",
"default": "md",
"description": "Default file extension for new notes"
},
"codexNotes.openFolderEnabled": {
"type": "boolean",
"default": true,
"description": "Enable opening note file location in file explorer"
}
}
},
"quickAccess": [
{
"prefix": "n",
"placeholder": "Search Codex Notes...",
"command": "codexNotes.searchNotes"
}
]
},
"scripts": {
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./ && npm run copy-wasm",
"copy-wasm": "mkdir -p out/repository && cp node_modules/sql.js/dist/sql-wasm.wasm out/repository/sql-wasm.wasm",
"watch": "tsc -watch -p ./",
"lint": "eslint src",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"test": "vscode-test"
},
"dependencies": {
"archiver": "^7.0.1",
"date-fns": "^4.1.0",
"sql.js": "^1.14.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/archiver": "^6.0.3",
"@types/jest": "^30.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "22.x",
"@types/vscode": "^1.85.0",
"@vscode/test-cli": "^0.0.11",
"@vscode/test-electron": "^2.5.2",
"eslint": "^9.39.3",
"prettier": "^3.8.3",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
}
}