forked from roma0104/gsd5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.04 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
{
"name": "twpluginskeleton",
"version": "0.0.4",
"author": "You",
"description": "TiddlyWiki Plugin Skeleton",
"homepage": "...",
"license": "...",
"bugs": "...",
"keywords": [
"tiddlywiki",
"tiddlywiki5",
"wiki",
"plugin",
"ThirdFlow"
],
"main": "main.js",
"scripts": {
"start": "tiddlywiki editions/develop --verbose --server 8080 $:/core/save/all text/plain text/html & echo $! > tw.pid",
"stop": "kill `cat tw.pid` && rm tw.pid",
"winstart": "start \"TW5 Plugin Develop\" cmd /c tiddlywiki editions/develop --verbose --server 8080 $:/core/save/all text/plain text/html",
"winstop": "taskkill /fi \"WINDOWTITLE eq TW5 Plugin Develop\"",
"develop": "tiddlywiki editions/develop --verbose --server 9999 $:/core/save/all text/plain text/html",
"release": "tiddlywiki editions/release --verbose --build release"
},
"dependencies": {
"tiddlywiki": ">=5.1.22",
"tw5-thirdflow": "^1.2.11"
},
"devDependencies": {},
"bundleDependencies": [],
"engines": {
"node": ">=0.8.2"
}
}