-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.25 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
{
"name": "svelte-highlight",
"version": "7.18.1",
"license": "MIT",
"description": "Svelte component library for highlighting code using highlight.js",
"author": "Eric Liu (https://github.com/metonym)",
"type": "module",
"scripts": {
"dev": "bun --bun astro dev",
"build": "bun --bun astro build",
"preview": "bun --bun astro preview",
"build:lib": "bun scripts/index.ts && bun format",
"package": "bun scripts/npm-package.ts",
"test:unit": "bun test tests/*.ts",
"test:e2e": "bunx playwright test",
"test:static-app": "bun run build:lib && bun run package && cd tests/e2e/static-app && bun install && bun run test",
"test:types": "tsgo",
"bench": "bun bench/index.ts",
"format": "biome format --write .",
"lint": "biome lint .",
"fix": "biome lint --write . && biome format --write .",
"fix:imports": "biome check --write --linter-enabled=false --formatter-enabled=false --only=assist/source/organizeImports tests/e2e/e2e.test.ts tests/*.ts scripts src",
"upgrade-examples": "bun scripts/upgrade-examples.ts",
"astro": "astro",
"playwright": "playwright"
},
"devDependencies": {
"@astrojs/svelte": "^8.1.2",
"@biomejs/biome": "2.5.10",
"@jridgewell/trace-mapping": "^0.3.31",
"@playwright/experimental-ct-svelte": "1.58.2",
"@playwright/test": "1.61.1",
"@sveltejs/vite-plugin-svelte": "^5.1.1",
"@types/bun": "^1.3.14",
"@types/jest": "^30.0.0",
"@types/node": "^25.9.5",
"@typescript/native-preview": "^7.0.0-dev.20260707.2",
"astro": "^6.4.8",
"carbon-components-svelte": "^0.110.1",
"carbon-preprocess-svelte": "^0.11.37",
"cssnano": "^7.1.9",
"cssnano-preset-lite": "^4.0.6",
"highlight.js": "11.12.0",
"mitata": "^1.0.34",
"postcss": "^8.5.19",
"postcss-discard-duplicates": "^7.0.4",
"postcss-inline-css-vars": "^0.1.0",
"postcss-merge-rules": "^7.0.11",
"svelte": "^5.56.6",
"vite": "^7.3.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/metonym/svelte-highlight.git"
},
"homepage": "https://svhe.onrender.com/",
"bugs": "https://github.com/metonym/svelte-highlight/issues",
"keywords": [
"svelte",
"svelte components",
"highlight.js",
"syntax highlight"
]
}