-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.23 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
{
"name": "lurkdown",
"version": "0.2.0",
"description": "A simple transpiler that takes markdown files and then transpiles to styled standalone HTML files.",
"main": "./bin/index.js",
"bin": {
"lurkdown": "./bin/index.js",
"obsfx@lurkdown": "./bin/index.js"
},
"scripts": {
"run": "ts-node ./src/index.ts",
"standalone": "pkg . --out-path ./standalone-executables",
"inspect": "node --inspect -r ts-node/register ./src/index.ts",
"build": "tsc -b",
"watch": "tsc -b --watch"
},
"keywords": [
"markdown",
"cli",
"command",
"line",
"tool",
"transpiler",
"compiler",
"parser",
"html"
],
"author": "obsfx",
"license": "GNU General Public License v3.0",
"homepage": "https://obsfx.github.io/lurkdown",
"repository": {
"type": "git",
"url": "https://github.com/obsfx/lurkdown.git"
},
"pkg": {
"assets": "./lib/**/*"
},
"devDependencies": {
"@types/highlight.js": "^9.12.4",
"@types/minimist": "^1.2.0",
"@types/node": "^14.11.2",
"@types/uuid": "^8.3.0",
"pkg": "^4.4.9",
"ts-node": "^9.0.0",
"typescript": "^3.9.7"
},
"dependencies": {
"highlight.js": "^10.4.1",
"minimist": "^1.2.5",
"uuid": "^8.3.0"
}
}