-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 2.04 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
{
"name": "sveltekit-shiki-code-highlighting",
"version": "0.0.1",
"license": "BSD-3-Clause",
"description": "SvelteKit Shiki syntax highlighting: use any VSCode colour theme to accessibly syntax highlight code on your SvelteKit app with line numbers.",
"scripts": {
"dev": "vite dev",
"start": "vite dev",
"build": "vite build",
"package": "svelte-kit package",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-check --tsconfig ./jsconfig.json --watch",
"test": "playwright test",
"lint": "prettier --check --plugin=prettier-plugin-svelte --plugin=@trivago/prettier-plugin-sort-imports . && eslint .",
"lint:css": "stylelint \"src/**/*.{css,svelte}\"",
"prettier:check": "prettier --check --plugin=prettier-plugin-svelte .",
"format": "prettier --write --plugin=prettier-plugin-svelte --plugin=@trivago/prettier-plugin-sort-imports ."
},
"devDependencies": {
"@fontsource/ibm-plex-mono": "^5.1.1",
"@playwright/test": "^1.49.1",
"@shikijs/transformers": "^1.26.2",
"@sveltejs/adapter-auto": "^3.3.1",
"@sveltejs/kit": "^2.15.2",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@trivago/prettier-plugin-sort-imports": "^5.2.1",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-svelte": "^2.46.1",
"globals": "^15.14.0",
"husky": "^9.1.7",
"mdsvex": "^0.12.3",
"node-html-parser": "^7.0.1",
"postcss-html": "^1.8.0",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.3",
"shiki": "^1.27.0",
"stylelint": "^16.13.2",
"stylelint-config-recommended": "^15.0.0",
"stylelint-config-standard": "^37.0.0",
"svelte": "^5.17.5",
"svelte-check": "^4.1.4",
"svelte-preprocess": "^6.0.3",
"typescript": "~5.7.3",
"typescript-eslint": "^8.20.0",
"vite": "^6.0.7"
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/rodneylab/sveltekit-shiki-code-highlighting"
},
"bugs": {
"url": "https://github.com/rodneylab/sveltekit-shiki-code-highlighting/issues"
},
"dependencies": {
"commitlint": "^19.6.1"
}
}