-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.2 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.2 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
{
"name": "@md/shared",
"type": "module",
"version": "1.0.0",
"private": true,
"exports": {
".": "./src/index.ts",
"./configs": "./src/configs/index.ts",
"./configs/*": "./src/configs/*.ts",
"./constants": "./src/constants/index.ts",
"./constants/*": "./src/constants/*.ts",
"./types": "./src/types/index.ts",
"./types/*": "./src/types/*.ts",
"./utils": "./src/utils/index.ts",
"./utils/*": "./src/utils/*.ts",
"./editor": "./src/editor/index.ts",
"./editor/*": "./src/editor/*.ts"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.2",
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/language": "^6.12.3",
"@codemirror/language-data": "^6.5.2",
"@codemirror/lint": "^6.9.6",
"@codemirror/search": "^6.7.0",
"@fsegurai/codemirror-theme-vscode-dark": "^6.2.6",
"@fsegurai/codemirror-theme-vscode-light": "^6.2.6",
"@replit/codemirror-indentation-markers": "^6.5.3",
"axios": "^1.16.1",
"es-toolkit": "^1.46.1",
"marked": "^18.0.4"
},
"devDependencies": {
"@md/config": "workspace:*"
}
}