forked from hplush/slowreader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.03 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
{
"name": "slowreader",
"license": "AGPL-3.0-or-later",
"private": true,
"type": "module",
"engines": {
"node": "^20.12.0",
"pnpm": "^8.0.0"
},
"scripts": {
"test": "FORCE_COLOR=1 pnpm run -r --include-workspace-root /^test:/",
"start": "FORCE_COLOR=1 pnpm run -r start",
"format": "pnpm run -r --include-workspace-root /^format:/",
"clean": "pnpm run -r --include-workspace-root /^clean:/",
"build": "pnpm run -r build",
"format:prettier": "prettier -w **/*.{js,ts,html,md,cjs,json} *.{js,json,md}",
"test:js": "eslint .",
"test:types": "svelte-check",
"test:audit": "pnpm audit --prod",
"test:focused": "tsx ./scripts/check-focused-tests.ts",
"test:messages": "tsx ./scripts/check-messages.ts",
"test:versions": "tsx ./scripts/check-versions.ts",
"test:markdown": "remark . --frail",
"test:format": "prettier --check **/*.{js,ts,html,md,cjs,json} *.{js,json,md}",
"check-opml": "tsx loader-tests/check-opml.ts",
"prepare": "husky"
},
"workspaces": [
"api",
"core",
"server",
"web",
"loader-tests"
],
"devDependencies": {
"@logux/eslint-config": "53.0.1",
"@types/node": "20.12.7",
"@types/ws": "8.5.10",
"better-node-test": "0.5.1",
"eslint": "8.57.0",
"eslint-plugin-svelte": "^2.37.0",
"husky": "^9.0.11",
"nano-staged": "0.8.0",
"postcss-html": "1.6.0",
"prettier": "3.2.5",
"prettier-plugin-svelte": "3.2.3",
"remark-cli": "^12.0.0",
"remark-lint-code-block-split-list": "^1.0.0",
"remark-lint-fenced-code-flag": "^4.0.0",
"remark-lint-first-heading-level": "^4.0.0",
"remark-lint-heading-capitalization": "^1.1.0",
"remark-lint-heading-increment": "^4.0.0",
"remark-lint-match-punctuation": "^0.2.1",
"remark-lint-no-dead-urls": "^1.1.0",
"remark-lint-no-shell-dollars": "^4.0.0",
"remark-validate-links": "^13.0.1",
"stylelint": "16.3.1",
"svelte": "4.2.14",
"svelte-check": "3.6.9",
"svgo": "3.2.0",
"tsx": "4.7.2",
"typescript": "5.4.5"
}
}