1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-08-07 22:33:50 +00:00

change indentation for better diff view

This commit is contained in:
pmario 2025-02-18 14:55:57 +01:00
parent 7f5a9e05d4
commit ed643cdceb

View File

@ -1,56 +1,56 @@
{ {
"name": "tiddlywiki", "name": "tiddlywiki",
"preferGlobal": "true", "preferGlobal": "true",
"version": "5.3.7-prerelease", "version": "5.3.7-prerelease",
"author": "Jeremy Ruston <jeremy@jermolene.com>", "author": "Jeremy Ruston <jeremy@jermolene.com>",
"description": "a non-linear personal web notebook", "description": "a non-linear personal web notebook",
"contributors": [ "contributors": [
{ {
"name": "Jeremy Ruston", "name": "Jeremy Ruston",
"email": "jeremy@jermolene.com" "email": "jeremy@jermolene.com"
} }
], ],
"bin": { "bin": {
"tiddlywiki": "./tiddlywiki.js" "tiddlywiki": "./tiddlywiki.js"
}, },
"main": "./boot/boot.js", "main": "./boot/boot.js",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/TiddlyWiki/TiddlyWiki5.git" "url": "https://github.com/TiddlyWiki/TiddlyWiki5.git"
}, },
"keywords": [ "keywords": [
"tiddlywiki", "tiddlywiki",
"tiddlywiki5", "tiddlywiki5",
"wiki" "wiki"
], ],
"devDependencies": { "devDependencies": {
"eslint": "^9.12.0", "eslint": "^9.12.0",
"@eslint/js": "^9.12.0" "@eslint/js": "^9.12.0"
}, },
"bundleDependencies": [], "bundleDependencies": [],
"license": "BSD", "license": "BSD",
"engines": { "engines": {
"node": ">=22.10.0" "node": ">=22.10.0"
}, },
"scripts": { "scripts": {
"start": "node ./tiddlywiki.js ./editions/tw5.com-server --listen", "start": "node ./tiddlywiki.js ./editions/tw5.com-server --listen",
"test": "node ./tiddlywiki.js ./editions/test --verbose --version --build index", "test": "node ./tiddlywiki.js ./editions/test --verbose --version --build index",
"lazy": "node ./tiddlywiki.js ./editions/tw5.com-server --listen root-tiddler=$:/core/save/lazy-all", "lazy": "node ./tiddlywiki.js ./editions/tw5.com-server --listen root-tiddler=$:/core/save/lazy-all",
"watch": "node --watch-path=./core --watch-preserve-output ./tiddlywiki.js ./editions/tw5.com-server --listen", "watch": "node --watch-path=./core --watch-preserve-output ./tiddlywiki.js ./editions/tw5.com-server --listen",
"dev": "node ./tiddlywiki.js +plugins/tiddlywiki/filesystem +plugins/tiddlywiki/tiddlyweb ./editions/dev --listen", "dev": "node ./tiddlywiki.js +plugins/tiddlywiki/filesystem +plugins/tiddlywiki/tiddlyweb ./editions/dev --listen",
"library:info": "echo The Warning: \"Plugin(s) required for client-server operation are missing\" is INTENTIONAL, so no files will be saved back.", "library:info": "echo The Warning: \"Plugin(s) required for client-server operation are missing\" is INTENTIONAL, so no files will be saved back.",
"library": "node ./tiddlywiki.js ./editions/pluginlibrary --build test-server", "library": "node ./tiddlywiki.js ./editions/pluginlibrary --build test-server",
"build": "node ./tiddlywiki.js ./editions/tw5.com --build", "build": "node ./tiddlywiki.js ./editions/tw5.com --build",
"help": "node ./tiddlywiki.js --help", "help": "node ./tiddlywiki.js --help",
"lint": "eslint .", "lint": "eslint .",
"lint:fix": "eslint . --fix", "lint:fix": "eslint . --fix",
"prelibrary": "npm run library:info -s" "prelibrary": "npm run library:info -s"
} }
} }