-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 2.77 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 2.77 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@speed-highlight/core",
"version": "2.1.0",
"description": "A tiny, fast, simple syntax highlighter for the web and the terminal in JavaScript",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/node/index.js"
},
"./detect": {
"types": "./dist/detect.d.ts",
"import": "./dist/detect.js",
"require": "./dist/node/detect.js"
},
"./tokenize": {
"types": "./dist/tokenize.d.ts",
"import": "./dist/tokenize.js",
"require": "./dist/node/tokenize.js"
},
"./languages": {
"types": "./dist/languages/index.d.ts",
"import": "./dist/languages/index.js",
"require": "./dist/node/languages/index.js"
},
"./languages/*.js": {
"types": "./dist/languages/*.d.ts",
"import": "./dist/languages/*.js",
"require": "./dist/node/languages/*.js"
},
"./themes/*.css": "./dist/themes/*.css",
"./themes/*.js": {
"types": "./dist/themes/*.d.ts",
"import": "./dist/themes/*.js",
"require": "./dist/node/themes/*.js"
}
},
"directories": {
"example": "examples"
},
"scripts": {
"build": "bash .github/workflows/build.sh",
"benchmark": "node scripts/benchmark.js",
"test": "node --test tests/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/speed-highlight/core.git"
},
"bugs": {
"url": "https://github.com/speed-highlight/core/issues"
},
"keywords": [
"javascript",
"syntax-highlighting",
"language",
"fast",
"js",
"simple",
"highlighter",
"regex",
"highlighting",
"highlightjs",
"small",
"deno"
],
"author": {
"name": "matubu",
"email": "hi@mathias.ninja",
"url": "https://mathias.ninja"
},
"license": "CC0-1.0",
"homepage": "https://github.com/speed-highlight/core#readme",
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@types/node": "^26.2.0",
"esbuild": "^0.28.1",
"highlight.js": "^11.11.1",
"lightningcss-cli": "^1.25.1",
"prismjs": "^1.30.0",
"semantic-release": "^25.0.2",
"shiki": "^4.4.2",
"sugar-high": "^2.0.0",
"typescript": "^5.3.3"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
},
"private": false,
"publishConfig": {
"access": "public",
"provenance": true
},
"files": [
"dist",
"src"
],
"sideEffects": [
"**/*.css"
],
"typesVersions": {
"*": {
"*": [
"dist/*",
"dist"
]
}
},
"type": "module"
}