|
1 | 1 | {
|
2 | 2 | "tasks": {
|
3 |
| - "predeploy": "deno run --no-prompt --allow-read --allow-write=\"./dist\" scripts/predeploy.ts", |
4 | 3 | "pull-project-docs": "deno run --no-prompt --allow-read --allow-net=\"github.com,codeload.github.com\" --allow-write=\"./public,$TMPDIR\" scripts/pull-project-docs.ts",
|
5 | 4 | "fetch-project-commit": "deno run --no-prompt --allow-read --allow-env --allow-net=\"github.com,api.github.com\" --allow-write=\"$TMPDIR\" scripts/fetch-project-commit.ts",
|
6 |
| - "docs:build": "astro build --root ./docs", |
| 5 | + "docs:prebuild": "deno run --no-prompt --allow-read --allow-write=\"./docs/src/content/docs,./docs/src/pages\" scripts/prebuild.ts", |
| 6 | + "docs:build": "deno task docs:prebuild && astro build --root ./docs", |
| 7 | + "docs:preview": "astro preview --root ./docs", |
7 | 8 | "docs:start": "astro dev --root ./docs",
|
| 9 | + "types:projects": "deno run --no-prompt --allow-read --allow-write=\"projects-schema.d.ts\" --allow-env --allow-sys=\"cpus\" json-schema-to-typescript --input projects-schema.json --output projects-schema.d.ts", |
8 | 10 | "juno": "juno"
|
9 | 11 | },
|
10 | 12 | "imports": {
|
| 13 | + "@astrojs/react": "npm:@astrojs/react@^4.3.0", |
| 14 | + "@pagefind/default-ui": "npm:@pagefind/default-ui@^1.4.0", |
| 15 | + "@radix-ui/react-navigation-menu": "npm:@radix-ui/react-navigation-menu@^1.2.14", |
| 16 | + "@types/react": "npm:@types/react@^19.1.12", |
| 17 | + "astro-integration-kit": "npm:astro-integration-kit@^0.19.0", |
11 | 18 | "fs": "node:fs",
|
| 19 | + "json-schema-to-typescript": "npm:json-schema-to-typescript@^15.0.4", |
| 20 | + "pagefind": "npm:pagefind@^1.4.0", |
| 21 | + "react": "npm:react@^19.1.1", |
| 22 | + "react-dom": "npm:react-dom@^19.1.1", |
| 23 | + "unist-util-visit": "npm:unist-util-visit@^5.0.0", |
12 | 24 | "url": "node:url",
|
| 25 | + "util": "node:util", |
13 | 26 | "path": "node:path",
|
14 | 27 | "@actions/core": "npm:@actions/core@^1.11.1",
|
15 | 28 | "@actions/github": "npm:@actions/github@^6.0.1",
|
|
0 commit comments