-
Notifications
You must be signed in to change notification settings - Fork 92
/
package.json
55 lines (55 loc) · 2.12 KB
/
package.json
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
{
"name": "@octopus/docs",
"type": "module",
"version": "0.0.1",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=18.14.1",
"pnpm": ">=9.10.0"
},
"scripts": {
"dev": "npm-run-all --parallel dev:img dev:astro dev:watch",
"dev:img": "node --no-experimental-fetch ./src/themes/octopus/utilities/img.mjs",
"dev:astro": "astro dev",
"dev:watch": "pnpm watch",
"test": "astro build && npx playwright install --with-deps && npx playwright test",
"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",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"css": "robocopy ./public/docs/css/ ./dist/docs/css/ /mir && robocopy ./public/docs/js/ ./dist/docs/js/ /mir",
"format": "prettier --write --plugin=prettier-plugin-astro 'src/**/*.{js,mjs,ts,astro,css}' 'public/docs/js/**/*.js' 'public/docs/css/**/*.css'",
"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": "^2.3.1",
"@pnpm/exe": "^9.13.0",
"astro": "^4.16.12",
"astro-accelerator-utils": "^0.3.28",
"cspell": "^8.16.0",
"glob": "^11.0.0",
"gray-matter": "^4.0.3",
"hast-util-from-selector": "^3.0.0",
"html-to-text": "^9.0.5",
"keyword-extractor": "^0.0.28",
"optional": "^0.1.4",
"remark-directive": "^3.0.0",
"remark-heading-id": "^1.0.1",
"sharp": "^0.33.5"
},
"devDependencies": {
"@playwright/test": "^1.48.2",
"csv-parse": "^5.5.6",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.13.0"
},
"pnpm": {
"overrides": {
"postcss@<8.4.31": ">=8.4.31",
"zod@<=3.22.2": ">=3.22.3"
}
}
}