-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
57 lines (57 loc) · 1.89 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
53
54
55
56
57
{
"name": "tiddlywiki-cpl",
"version": "1.0.0",
"description": "TiddlyWiki5 Plugin Library for TiddlyWiki Chinese Communities",
"main": "scripts/index.js",
"scripts": {
"help": "ts-node scripts help",
"server": "run start",
"clean": "rimraf ./dist ./cache",
"start": "tiddlywiki +plugins/tiddlywiki/filesystem +plugins/tiddlywiki/tiddlyweb . --listen port=8080",
"build": "ts-node scripts build website && ts-node scripts build library --cache-mode",
"dev:build": "npm run clean && cross-env NODE_ENV=development npm run build",
"dev:buildlibrary": "npm run clean && cross-env NODE_ENV=development ts-node scripts build library",
"buildlibrary": "ts-node scripts build library",
"buildonline": "ts-node scripts build website",
"importplugin": "ts-node scripts import plugin",
"importlibrary": "ts-node scripts import library",
"importAllLibrary": "ts-node scripts import library --all",
"importlibraryofficial": "ts-node scripts import library --official"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tiddly-gittly/TiddlyWiki-CPL.git"
},
"keywords": [
"TiddlyWiki5",
"PluginLibrary"
],
"author": "Gk0Wk",
"license": "MIT",
"bugs": {
"url": "https://github.com/tiddly-gittly/TiddlyWiki-CPL/issues"
},
"engines": {
"node": ">=16"
},
"homepage": "https://github.com/tiddly-gittly/TiddlyWiki-CPL#readme",
"devDependencies": {
"@modern-js/eslint-config": "^2.58.1",
"@modern-js/tsconfig": "^2.58.1",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.4.1",
"cross-env": "^7.0.3",
"fs-extra": "^11.2.0",
"html-minifier-terser": "^7.2.0",
"rimraf": "^6.0.1",
"tiddlywiki": "5.3.5",
"ts-node": "^10.9.2",
"tw5-typed": "0.5.12",
"workbox-cli": "7.1.0"
},
"dependencies": {
"@inquirer/prompts": "^5.3.8",
"chalk": "^4.1.2",
"commander": "^12.1.0"
}
}