-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.67 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.67 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
{
"name": "@octopus/docs",
"type": "module",
"version": "0.0.1",
"private": true,
"packageManager": "pnpm@10.13.1",
"engines": {
"node": ">=18.14.1",
"pnpm": ">=9.10.0"
},
"scripts": {
"dev": "npm-run-all --parallel dev:img dev:dictionary dev:astro dev:watch",
"dev:dictionary": "node ./dictionary-sorter.mjs",
"dev:img": "node ./src/themes/octopus/utilities/img.mjs",
"dev:astro": "astro dev",
"dev:watch": "onchange 'src/**/*.{js,mjs,ts,astro,css}' 'public/docs/js/**/*.js' 'public/docs/css/**/*.css' -- prettier --write --plugin=prettier-plugin-astro {{changed}}",
"astro": "astro",
"build": "astro build",
"crawl": "linkinator ./dist --skip \"^(?!http://localhost)\" --recurse --verbosity error",
"format": "prettier --write --plugin=prettier-plugin-astro 'src/**/*.{js,mjs,ts,astro,css}' 'public/docs/js/**/*.js' 'public/docs/css/**/*.css'",
"preview": "astro preview",
"renovate": "renovate",
"spellcheck": "git fetch origin main:refs/remotes/origin/main && git diff origin/main --name-only --diff-filter=ACMRTUXB | cspell --no-must-find-files --file-list stdin",
"spellcheck-all": "cspell \"**/*.{md,mdx}\"",
"thin": "node ./src/themes/octopus/utilities/dist-thinner.mjs",
"test": "astro build && npx playwright install --with-deps && npx playwright test",
"watch": "onchange 'src/**/*.{js,mjs,ts,astro,css}' 'public/docs/js/**/*.js' 'public/docs/css/**/*.css' -- prettier --write --plugin=prettier-plugin-astro {{changed}}"
},
"dependencies": {
"@astrojs/mdx": "^4.3.13",
"astro": "^5.18.0",
"astro-accelerator-utils": "^0.3.71",
"glob": "^13.0.6",
"gray-matter": "^4.0.3",
"hast-util-from-selector": "^3.0.1",
"html-to-text": "^9.0.5",
"keyword-extractor": "^0.0.28",
"optional": "^0.1.4",
"remark-directive": "^4.0.0",
"remark-heading-id": "^1.0.1",
"sharp": "^0.34.5"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@pnpm/exe": "^10.30.3",
"cspell": "^9.7.0",
"csv-parse": "^6.1.0",
"linkinator": "7.6.1",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1"
},
"pnpm": {
"overrides": {
"postcss@<8.4.31": ">=8.4.31",
"zod@<=3.22.2": ">=3.22.3",
"esbuild": ">=0.25.0",
"svgo": ">=4.0.1",
"devalue": ">=5.6.3",
"minimatch": ">=10.2.3",
"rollup": ">=4.59.0",
"linkinator": "7.0.0"
}
}
}