-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.75 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.75 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
74
75
76
{
"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 --bail",
"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 1",
"update-review": "node --env-file-if-exists=.env node_modules/multiocular/server/bin.js --port 2556",
"format:oxfmt": "oxfmt .",
"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",
"pnpm:devPreinstall": "git config core.hooksPath .githooks"
},
"devDependencies": {
"@logux/eslint-config": "57.1.0",
"@logux/oxc-configs": "0.4.0",
"@types/chrome": "0.1.42",
"@types/node": "25.8.0",
"@types/ws": "8.18.1",
"@typescript/native-preview": "7.0.0-dev.20260515.1",
"actions-up": "1.14.1",
"better-node-test": "0.8.4",
"eslint": "10.3.0",
"eslint-plugin-svelte": "3.17.1",
"jiti": "2.7.0",
"multiocular": "0.8.3",
"nano-staged": "1.0.2",
"oxfmt": "0.49.0",
"oxlint": "1.64.0",
"oxlint-tsgolint": "0.22.1",
"postcss-html": "1.8.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.11.1",
"svelte": "5.55.7",
"svelte-eslint-parser": "1.6.1",
"svgo": "4.0.1",
"typescript": "6.0.3"
},
"engines": {
"node": "^26.1.0",
"pnpm": "^11.0.0"
},
"packageManager": "pnpm@11.1.2",
"pnpm": {
"overrides": {
"cssstyle": "6.0.1",
"rollup@<2.80.0": ">=2.80.0"
}
}
}