forked from asvd/microlight
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 873 Bytes
/
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
{
"name": "macrolight",
"contributors": [
"Dmitry Prokashev <heliosframework@gmail.com>",
"Siddharth Singh <me@shantaram.xyz>"
],
"description": "Simple, minimal syntax highlighter.",
"version": "1.5.0",
"keywords": [
"syntax",
"highlight",
"highlighting",
"source",
"code",
"source code",
"snippet",
"code snippet"
],
"repository": {
"type": "git",
"url": "git+https://github.com/xyzshantaram/macrolight.git"
},
"bugs": {
"url": "https://github.com/xyzshantaram/macrolight/issues"
},
"license": "MIT",
"devDependencies": {
"esbuild": "^0.13.3"
},
"engines": {
"node": "*"
},
"scripts": {
"build": "node esbuild.config.js",
"push": "npm run build && npm publish"
},
"files": [
"dist"
],
"main": "dist/macrolight.cjs.js",
"module": "dist/macrolight.esm.js"
}