-
-
Notifications
You must be signed in to change notification settings - Fork 493
/
package.json
27 lines (27 loc) · 1.06 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
{
"name": "docker-ttrss-plugins",
"version": "1.0.0",
"private": true,
"repository": "[email protected]:HenryQW/docker-ttrss-plugins.git",
"license": "MIT",
"author": "Henry <[email protected]>",
"type": "module",
"scripts": {
"docker:build": "docker rm ttrss -f && docker compose -f docker-compose.dev.yml up -d --build && docker logs ttrss -f",
"docker:build:down": "docker compose -f docker-compose.dev.yml down",
"docker:dev": "docker rm ttrss -f && docker compose -f docker-compose.yml up -d && docker logs ttrss -f",
"docker:dev:down": "docker compose -f docker-compose.yml down",
"docs:build": "vitepress build docs",
"docs:dev": "vitepress dev docs",
"docs:preview": "vitepress preview docs",
"format": "prettier \"**/*.{js,json,md}\" --write",
"textlint": "textlint \"**/*.md\"",
"textlint:fix": "textlint \"**/*.md\" --fix"
},
"devDependencies": {
"textlint": "14.2.1",
"textlint-rule-en-capitalization": "2.0.3",
"textlint-rule-ja-space-between-half-and-full-width": "2.4.2",
"vitepress": "1.4.1"
}
}