-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.94 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.94 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
{
"name": "shiki-highlighter",
"version": "0.7.7",
"description": "Highlight code blocks with Shiki.",
"main": "main.js",
"scripts": {
"dev": "vite build --mode=development --watch",
"build": "bun run typecheck && vite build --mode=production",
"typecheck": "tsc -noEmit -skipLibCheck",
"test": "bun test",
"test:log": "LOG_TESTS=true bun test",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint --max-warnings=0 packages/**",
"lint:fix": "eslint --max-warnings=0 --fix packages/**",
"check": "bun run format:check && bun run typecheck && bun run lint && bun run test",
"check:fix": "bun run format && bun run typecheck && bun run lint:fix && bun run test",
"release": "lemons-automation release"
},
"keywords": [],
"author": "Moritz Jung",
"license": "MIT",
"devDependencies": {
"@codemirror/language": "^6.12.3",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.41.1",
"@eslint/js": "^9.39.4",
"@expressive-code/core": "^0.41.7",
"@expressive-code/plugin-collapsible-sections": "^0.41.7",
"@expressive-code/plugin-frames": "^0.41.7",
"@expressive-code/plugin-line-numbers": "^0.41.7",
"@expressive-code/plugin-shiki": "^0.41.7",
"@expressive-code/plugin-text-markers": "^0.41.7",
"@happy-dom/global-registrator": "^20.9.0",
"@lemons_dev/lemons-obsidian-plugin-automation": "^0.1.3",
"@lezer/common": "^1.5.2",
"@tsconfig/svelte": "^5.0.8",
"@types/bun": "^1.3.13",
"@types/prismjs": "^1.26.6",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-no-relative-import-paths": "^1.6.1",
"eslint-plugin-only-warn": "^1.2.1",
"hast-util-to-dom": "^4.0.1",
"itertools-ts": "^2.5.0",
"obsidian": "latest",
"prettier": "^3.8.3",
"shiki": "^3.23.0",
"tslib": "^2.8.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0",
"vite": "^8.0.10",
"vite-plugin-banner": "^0.8.1",
"vite-plugin-node-polyfills": "^0.26.0",
"vite-plugin-static-copy": "^4.1.0"
}
}