-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.73 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.73 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
72
73
{
"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:oxfmt": "oxfmt .",
"format:prettier": "prettier --experimental-cli --write **/*.svelte",
"test:js": "oxlint",
"test:online:audit": "pnpm audit --prod",
"test:check-tests": "node ./scripts/check-tests.ts",
"test:messages": "node ./scripts/check-messages.ts",
"test:versions": "node ./scripts/check-versions.ts",
"test:online:markdown": "remark . --frail",
"clean:types": "rm -f */tsconfig.tsbuildinfo"
},
"devDependencies": {
"@logux/eslint-config": "57.1.0",
"@logux/oxc-configs": "0.2.2",
"@types/chrome": "0.1.38",
"@types/node": "25.5.0",
"@types/ws": "8.18.1",
"@typescript/native-preview": "7.0.0-dev.20260331.1",
"actions-up": "1.12.0",
"better-node-test": "0.8.4",
"eslint": "10.1.0",
"eslint-plugin-svelte": "3.16.0",
"husky": "9.1.7",
"jiti": "2.6.1",
"multiocular": "0.8.2",
"nano-staged": "0.9.0",
"oxfmt": "0.43.0",
"oxlint": "1.58.0",
"oxlint-tsgolint": "0.18.1",
"postcss-html": "1.8.1",
"prettier": "3.8.1",
"prettier-plugin-svelte": "3.5.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": "17.6.0",
"svelte": "5.55.1",
"svelte-eslint-parser": "1.6.0",
"svgo": "4.0.1",
"typescript": "6.0.2"
},
"engines": {
"node": "^24.14.0",
"pnpm": "^10.0.0"
},
"packageManager": "pnpm@10.33.0"
}