generated from mProjectsCode/lemons-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
63 lines (63 loc) · 2.28 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
58
59
60
61
62
63
{
"name": "shiki-highlighter",
"version": "0.4.4",
"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 --plugin prettier-plugin-svelte .",
"format:check": "prettier --check --plugin prettier-plugin-svelte .",
"lint": "eslint --max-warnings=0 src/**",
"lint:fix": "eslint --max-warnings=0 --fix src/**",
"svelte-check": "svelte-check --compiler-warnings \"unused-export-let:ignore\"",
"check": "bun run format:check && bun run tsc && bun run svelte-check && bun run lint && bun run test",
"check:fix": "bun run format && bun run tsc && bun run svelte-check && 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.2",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.28.4",
"@eslint/js": "^9.6.0",
"@expressive-code/core": "^0.35.3",
"@expressive-code/plugin-collapsible-sections": "^0.35.3",
"@expressive-code/plugin-frames": "^0.35.3",
"@expressive-code/plugin-line-numbers": "^0.35.3",
"@expressive-code/plugin-shiki": "^0.35.3",
"@expressive-code/plugin-text-markers": "^0.35.3",
"@happy-dom/global-registrator": "^14.12.3",
"@lemons_dev/parsinom": "^0.0.12",
"@lezer/common": "^1.2.1",
"@tsconfig/svelte": "^5.0.4",
"@types/bun": "^1.1.6",
"@types/eslint__js": "^8.42.3",
"builtin-modules": "^4.0.0",
"esbuild": "^0.23.0",
"esbuild-plugin-copy-watch": "^2.3.1",
"esbuild-plugins-node-modules-polyfill": "^1.6.4",
"esbuild-svelte": "^0.8.1",
"eslint": "^9.6.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.3.2",
"prettier-plugin-svelte": "^3.2.5",
"shiki": "^1.1.7",
"string-argv": "^0.3.2",
"svelte": "^4.2.18",
"svelte-check": "^3.8.4",
"svelte-preprocess": "^6.0.2",
"tslib": "^2.6.3",
"typescript": "^5.5.3",
"typescript-eslint": "^7.16.0"
}
}