-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 858 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 858 Bytes
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
{
"name": "data-highlight",
"version": "0.1.0",
"description": "A custom Datastar attribute plugin that uses the CSS Custom Highlight API to add syntax highlighting to elements.",
"main": "data-highlight.js",
"scripts": {
"build": "npx esbuild --minify --bundle --platform=neutral --external:datastar --outdir=dist ./data-highlight.js ./tokenizers/*.js"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Regaez/data-highlight.git"
},
"keywords": [
"datastar",
"attribute",
"plugin",
"syntax-highlighting",
"css-highlight"
],
"author": "Thomas Threadgold",
"license": "MIT",
"bugs": {
"url": "https://github.com/Regaez/data-highlight/issues"
},
"homepage": "https://github.com/Regaez/data-highlight#readme",
"dependencies": {
"css-tree": "3.1.0"
}
}