-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
68 lines (68 loc) · 2.56 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "streams",
"version": "1.2.24",
"description": "tw5 plugin",
"tiddlywiki-plugin": "plugins/streams",
"config": {
"plugin-path": "plugins/streams",
"plugin-namespace": "$:/plugins/sq/streams",
"release-files": [
"CHANGELOG.md",
"package.json",
"{{PLUGINPATH}}/releasenotes.txt",
"{{PLUGINPATH}}/plugin.info",
"tiddlers/CHANGELOG.txt"
]
},
"dependencies": {
"tiddlywiki": "^5.2.2",
"tiddlywiki-prerelease": "github:Jermolene/TiddlyWiki5"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"marked": "^4.0.12",
"nodemon": "^2.0.7",
"standard-version": "^9.3.0"
},
"scripts": {
"postinstall": "git config core.hooksPath ./.git-hooks",
"editor": "atom --new-window",
"browser": "chrome --new-window",
"build": "node ./node_modules/tiddlywiki/tiddlywiki.js . --build index",
"build-prerelease": "node ./node_modules/tiddlywiki-prerelease/tiddlywiki.js . --output ./output/prerelease/ --build index",
"build-beta": "node ./node_modules/tiddlywiki/tiddlywiki.js . --build beta",
"build-prerelease-beta": "node ./node_modules/tiddlywiki-prerelease/tiddlywiki.js . --output ./output/prerelease/ --build beta",
"update-tw": "npm install --save tiddlywiki-prerelease@github:Jermolene/TiddlyWiki5 && npm install --save tiddlywiki",
"dev": "npx nodemon -e tid,multids,js,info --watch plugins ./node_modules/tiddlywiki/tiddlywiki.js . --listen port=7111",
"dev-prerelease": "npx nodemon -e tid,multids,js,info --watch plugins ./node_modules/tiddlywiki-prerelease/tiddlywiki.js . --listen port=7111",
"release": "git diff HEAD --quiet && ( standard-version --skip.commit --skip.tag && ./scripts/create-release-note.js && ./scripts/publish.js ) || (tput setaf 1; echo 'ERROR: Git repository is dirty')",
"release:clean": "rm CHANGELOG-temp-PREV.md && rm CHANGELOG-temp-NEW.md",
"push": "git push origin main"
},
"standard-version": {
"scripts": {
"prechangelog": "cp CHANGELOG.md CHANGELOG-temp-PREV.md",
"postchangelog": "npm run editor CHANGELOG.md"
},
"bumpFiles": [
{
"filename": "package.json"
},
{
"filename": "plugins/streams/plugin.info",
"type": "json"
}
]
},
"author": "Saq Imtiaz",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "[email protected]:saqimtiaz/streams.git"
},
"bugs": {
"url": "https://github.com/saqimtiaz/streams/issues"
},
"homepage": "https://saqimtiaz.github.io/streams/"
}