mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-10-31 23:26:18 +00:00
9773dff1e3
* Update package.json * lint fix * chore: use node ./tiddlywiki.js instead of ./bin/serve.sh * Update package.json * Update package.json
41 lines
923 B
JSON
41 lines
923 B
JSON
{
|
|
"name": "tiddlywiki",
|
|
"preferGlobal": "true",
|
|
"version": "5.3.2-prerelease",
|
|
"author": "Jeremy Ruston <jeremy@jermolene.com>",
|
|
"description": "a non-linear personal web notebook",
|
|
"contributors": [
|
|
{
|
|
"name": "Jeremy Ruston",
|
|
"email": "jeremy@jermolene.com"
|
|
}
|
|
],
|
|
"bin": {
|
|
"tiddlywiki": "./tiddlywiki.js"
|
|
},
|
|
"main": "./boot/boot.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Jermolene/TiddlyWiki5.git"
|
|
},
|
|
"keywords": [
|
|
"tiddlywiki",
|
|
"tiddlywiki5",
|
|
"wiki"
|
|
],
|
|
"devDependencies": {
|
|
"eslint": "^7.32.0"
|
|
},
|
|
"bundleDependencies": [],
|
|
"license": "BSD",
|
|
"engines": {
|
|
"node": ">=0.8.2"
|
|
},
|
|
"scripts": {
|
|
"dev": "node ./tiddlywiki.js ./editions/tw5.com-server --listen",
|
|
"test": "node ./tiddlywiki.js ./editions/test --verbose --version --build index",
|
|
"lint:fix": "eslint . --fix",
|
|
"lint": "eslint ."
|
|
}
|
|
}
|