forked from hplush/slowreader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.69 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.69 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
71
{
"name": "slowreader",
"private": true,
"license": "AGPL-3.0-or-later",
"type": "module",
"scripts": {
"test": "FORCE_COLOR=1 pnpm run -r --include-workspace-root /^test:/",
"quick": "nano-staged --unstaged --quiet",
"offline": "FORCE_COLOR=1 pnpm run -r --include-workspace-root '/^test:(?!online\\b)/'",
"start": "FORCE_COLOR=1 pnpm run -F server -F web start",
"format": "pnpm run -r --include-workspace-root /^format:/",
"clean": "pnpm run -r --include-workspace-root /^clean:/",
"build": "pnpm run -r build",
"unused-messages": "node scripts/check-unused-messages.ts",
"update-browsers": "node web/scripts/update-browsers.ts",
"update-env": "node ./scripts/update-env.ts",
"update-ci": "node --env-file-if-exists=.env node_modules/actions-up/bin/actions-up.js --min-age 1d",
"update-review": "node --env-file-if-exists=.env node_modules/multiocular/server/bin.js --port 2556",
"format:js": "eslint --fix --concurrency=auto --cache .",
"format:oxfmt": "oxfmt .",
"format:prettier": "prettier --experimental-cli --write **/*.svelte",
"test:js": "eslint --concurrency=auto --cache .",
"test:types": "svelte-check",
"test:online:audit": "pnpm audit --prod",
"test:focused": "node ./scripts/check-focused-tests.ts",
"test:messages": "node ./scripts/check-messages.ts",
"test:versions": "node ./scripts/check-versions.ts",
"test:online:markdown": "remark . --frail"
},
"devDependencies": {
"@logux/eslint-config": "57.0.1",
"@types/chrome": "0.1.32",
"@types/node": "25.0.3",
"@types/ws": "8.18.1",
"actions-up": "1.7.0",
"better-node-test": "0.8.3",
"eslint": "9.39.2",
"eslint-plugin-svelte": "3.13.1",
"husky": "9.1.7",
"jiti": "2.6.1",
"multiocular": "0.8.2",
"nano-staged": "0.9.0",
"oxfmt": "0.19.0",
"postcss-html": "1.8.0",
"prettier": "3.7.4",
"prettier-plugin-svelte": "3.4.1",
"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.2.0",
"remark-lint-first-heading-level": "4.0.1",
"remark-lint-heading-capitalization": "1.3.0",
"remark-lint-heading-increment": "4.0.1",
"remark-lint-match-punctuation": "0.2.1",
"remark-lint-no-dead-urls": "2.0.1",
"remark-lint-no-shell-dollars": "4.0.1",
"remark-lint-smarty-pants-typography": "1.1.0",
"remark-validate-links": "13.1.0",
"stylelint": "16.26.1",
"svelte": "5.46.0",
"svelte-check": "4.3.4",
"svelte-eslint-parser": "1.4.1",
"svgo": "4.0.0",
"typescript": "5.9.3"
},
"engines": {
"node": "^24.12.0",
"pnpm": "^10.0.0"
},
"packageManager": "pnpm@10.26.1"
}