-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.34 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
{
"name": "obsidian-codespace",
"version": "2.3.0",
"description": "Professional code file management with visual dashboard, syntax highlighting editor, and Markdown embedding.",
"author": "unlinearity <unlinearity@gmail.com>",
"main": "main.js",
"type": "module",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"lint": "eslint .",
"dev:copy": "npm run build && robocopy . \"C:\\Nonlinear\\ob\\.obsidian\\plugins\\code-space\" main.js manifest.json styles.css /IS /IT /NJH /NJS /nc /ns /np || exit 0"
},
"keywords": [
"code",
"editor",
"ide",
"syntax-highlighting",
"dashboard",
"code-management",
"obsidian-plugin"
],
"license": "MIT",
"devDependencies": {
"@eslint/js": "9.30.1",
"@types/node": "^16.11.6",
"esbuild": "0.25.5",
"eslint-plugin-obsidianmd": "0.1.9",
"globals": "14.0.0",
"jiti": "2.6.1",
"tslib": "2.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "8.35.1"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.0",
"@codemirror/commands": "^6.0.0",
"@codemirror/lang-cpp": "^6.0.0",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-go": "^6.0.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-java": "^6.0.2",
"@codemirror/lang-javascript": "^6.0.0",
"@codemirror/lang-php": "^6.0.2",
"@codemirror/lang-python": "^6.0.0",
"@codemirror/lang-rust": "^6.0.2",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/lang-xml": "^6.1.0",
"@codemirror/lang-yaml": "^6.1.2",
"@codemirror/language": "^6.0.0",
"@codemirror/legacy-modes": "^6.5.2",
"@codemirror/search": "^6.6.0",
"@codemirror/state": "^6.0.0",
"@codemirror/theme-one-dark": "^6.0.0",
"@codemirror/view": "^6.0.0",
"@lezer/common": "^1.0.0",
"@lezer/cpp": "^1.1.5",
"@lezer/css": "^1.3.0",
"@lezer/highlight": "^1.0.0",
"@lezer/html": "^1.3.13",
"@lezer/javascript": "^1.5.4",
"@lezer/php": "^1.0.5",
"@lezer/python": "^1.1.4",
"codemirror": "^6.0.1",
"codemirror-lang-r": "^0.1.1",
"obsidian": "latest"
},
"overrides": {
"@codemirror/state": "$@codemirror/state",
"@codemirror/view": "$@codemirror/view",
"@codemirror/language": "$@codemirror/language",
"@lezer/common": "$@lezer/common",
"@lezer/highlight": "$@lezer/highlight"
}
}