-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.63 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.63 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
{
"name": "syntax-highlight-element",
"version": "1.2.0",
"description": "Syntax Highlighting using the CSS Custom Highlight API",
"license": "MIT",
"funding": "https://github.com/andreruffert/syntax-highlight-element?sponsor=1",
"homepage": "https://andreruffert.github.io/syntax-highlight-element/",
"author": {
"name": "André Ruffert",
"url": "https://andreruffert.com"
},
"type": "module",
"exports": {
".": {
"import": "./dist/syntax-highlight-element.js"
},
"./themes/*": "./dist/themes/*",
"./tokenizer/*": "./dist/tokenizer/*"
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"dev:docs": "vite --config vite.docs.config.js",
"build": "vite build && vite build --config vite.themes.config.js && vite build --config vite.tokenizer.config.js",
"preview": "vite preview",
"test": "vitest",
"format": "biome check --write",
"lint": "biome ci",
"prepublishOnly": "npm run build",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"devDependencies": {
"@biomejs/biome": "2.3.4",
"@vitest/browser-playwright": "4.0.15",
"conventional-changelog-cli": "5.0.0",
"vite": "7.3.1",
"vitest": "4.0.15"
},
"volta": {
"node": "22.13.1",
"npm": "11.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andreruffert/syntax-highlight-element.git"
},
"bugs": {
"url": "https://github.com/andreruffert/syntax-highlight-element/issues"
},
"keywords": [
"syntax",
"highlight",
"CSS Custom Highlight API",
"custom element",
"web component"
]
}