generated from mProjectsCode/lemons-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
57 lines (57 loc) · 1.95 KB
/
package.json
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
{
"name": "shiki-highlighter",
"version": "0.4.5",
"description": "Highlight code blocks with Shiki.",
"main": "main.js",
"scripts": {
"dev": "bun run automation/build/esbuild.dev.config.ts",
"build": "bun run tsc && bun run automation/build/esbuild.config.ts",
"tsc": "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 src/**",
"lint:fix": "eslint --max-warnings=0 --fix src/**",
"check": "bun run format:check && bun run tsc && bun run lint && bun run test",
"check:fix": "bun run format && bun run tsc && bun run lint:fix && bun run test",
"release": "bun run automation/release.ts",
"stats": "bun run automation/stats.ts"
},
"keywords": [],
"author": "Moritz Jung",
"license": "MIT",
"devDependencies": {
"@codemirror/language": "^6.10.6",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.35.0",
"@eslint/js": "^9.16.0",
"@expressive-code/core": "^0.38.3",
"@expressive-code/plugin-collapsible-sections": "^0.38.3",
"@expressive-code/plugin-frames": "^0.38.3",
"@expressive-code/plugin-line-numbers": "^0.38.3",
"@expressive-code/plugin-shiki": "^0.38.3",
"@expressive-code/plugin-text-markers": "^0.38.3",
"@happy-dom/global-registrator": "^14.12.3",
"@lemons_dev/parsinom": "^0.0.12",
"@lezer/common": "^1.2.3",
"@tsconfig/svelte": "^5.0.4",
"@types/bun": "^1.1.14",
"@types/eslint__js": "^8.42.3",
"builtin-modules": "^4.0.0",
"esbuild": "^0.24.0",
"esbuild-plugin-copy-watch": "^2.3.1",
"esbuild-plugins-node-modules-polyfill": "^1.6.8",
"eslint": "^9.16.0",
"eslint-plugin-no-relative-import-paths": "^1.5.5",
"eslint-plugin-only-warn": "^1.1.0",
"itertools-ts": "^1.27.1",
"obsidian": "latest",
"prettier": "^3.4.2",
"shiki": "^1.24.0",
"string-argv": "^0.3.2",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0"
}
}