-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
32 lines (32 loc) · 1018 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
{
"name": "tw5-monaco",
"version": "0.1.0",
"author": "Miha Lunar",
"license": "MIT",
"type": "module",
"description": "Monaco Editor packaged for TiddlyWiki",
"scripts": {
"build": "node ./node_modules/tiddlywiki/tiddlywiki.js . --build index",
"start": "tiddlywiki . --listen",
"watch": "nodemon ./node_modules/tiddlywiki/tiddlywiki.js . --listen",
"test": "echo \"Error: no test specified\" && exit 1",
"readme": "run-s readme-to-html readme-html-to-markdown",
"readme-to-html": "tiddlywiki . --render \"[[github-readme]]\" readme.html",
"readme-html-to-markdown": "cat autogen-header.txt > README.md && cat output/readme.html | node html-to-markdown.js >> README.md"
},
"nodemonConfig": {
"ignore": [
"node_modules",
"tiddlers/*"
],
"ext": "js,tid,info,files,multids"
},
"dependencies": {
"tiddlywiki": "^5.2.1"
},
"devDependencies": {
"node-html-markdown": "^1.1.3",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5"
}
}