forked from speed-highlight/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 1.97 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
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
{
"name": "@speed-highlight/core",
"version": "1.2.6",
"description": "🌈 Light, fast, and easy to use, dependencies free javascript syntax highlighter, with automatic language detection",
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/node/index.js",
"types": "./dist/index.d.ts"
},
"./detect": {
"import": "./dist/detect.js",
"require": "./dist/node/detect.js",
"types": "./dist/detect.d.ts"
},
"./terminal": {
"import": "./dist/terminal.js",
"require": "./dist/node/terminal.js",
"types": "./dist/terminal.d.ts"
},
"./themes/*.css": "./dist/themes/*.css"
},
"directories": {
"example": "examples"
},
"scripts": {
"build": "bash .github/workflows/build.sh"
},
"repository": {
"type": "git",
"url": "git://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": "matubu",
"license": "CC0-1.0",
"homepage": "https://github.com/speed-highlight/core#readme",
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"esbuild": "^0.21.5",
"lightningcss-cli": "^1.25.1",
"semantic-release": "^24.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"
],
"typesVersions": {
"*": {
"*": [
"dist/*",
"dist"
]
}
},
"type": "module"
}