forked from ninaTorgunakova/slowreader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.29 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.29 KB
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
69
70
{
"name": "slowreader",
"license": "AGPL-3.0-or-later",
"private": true,
"type": "module",
"engines": {
"node": "^22.5.0",
"pnpm": "^9.0.0"
},
"packageManager": "pnpm@9.6.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",
"update-env": "tsx ./scripts/update-env.ts",
"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",
"test-loaders": "tsx loader-tests/test-loaders.ts loader-tests/feeds.yml",
"prepare": "husky"
},
"workspaces": [
"api",
"core",
"server",
"web",
"loader-tests",
"proxy"
],
"devDependencies": {
"@logux/eslint-config": "53.2.1",
"@types/node": "20.14.11",
"@types/ws": "8.5.11",
"better-node-test": "0.5.1",
"eslint": "9.7.0",
"eslint-plugin-svelte": "^2.43.0",
"husky": "^9.1.1",
"nano-staged": "0.8.0",
"postcss-html": "1.7.0",
"prettier": "3.3.3",
"prettier-plugin-svelte": "3.2.6",
"remark-cli": "^12.0.1",
"remark-lint-check-toc": "^1.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-lint-smarty-pants-typography": "^1.1.0",
"remark-validate-links": "^13.0.1",
"stylelint": "16.7.0",
"svelte": "4.2.18",
"svelte-check": "3.8.4",
"svgo": "3.3.2",
"tsx": "4.16.2",
"typescript": "5.5.3"
}
}