-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
22 lines (22 loc) · 1.03 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
{
"scripts": {
"zx-build": "zx ./scripts/build-wiki.mjs",
"server": "npx cross-env TIDDLYWIKI_PLUGIN_PATH='./plugins' TIDDLYWIKI_THEME_PATH='./themes' TIDDLYWIKI_LANGUAGE_PATH='./languages' npx tiddlywiki . --listen port=8080",
"buildonline": "node -e \"require('./scripts/build').buildOnlineHTML('public-dist', 'index.html');\"",
"buildoffline": "node -e \"require('./scripts/build').buildOfflineHTML('public-dist', 'offline.html');\"",
"buildlibrary": "node -e \"require('./scripts/build').buildLibrary('[prefix[$:/]!prefix[$:/plugins/tiddlywiki/]!prefix[$:/themes/tiddlywiki/]!prefix[$:/languages/]!tag[$:/tags/PluginLibrary]!prefix[$:/plugins/kookma]]', 'public-dist/library');\"",
"clean": "rimraf public-dist",
"update": "npm-check-updates -u"
},
"devDependencies": {
"cross-env": "7.0.3",
"html-minifier-terser": "7.2.0",
"npm-check-updates": "^17.1.13",
"rimraf": "^6.0.1",
"shx": "0.3.4",
"tiddlywiki": "^5.3.6",
"uglify-js": "3.19.3",
"workbox-cli": "7.3.0",
"zx": "^8.3.0"
}
}