-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 4.69 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 4.69 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "gustwind",
"version": "0.90.0",
"type": "module",
"description": "Gustwind is a Node.js-powered website creator that allows component-oriented development of large-scale sites.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/gustwindjs/gustwind.git"
},
"bugs": {
"url": "https://github.com/gustwindjs/gustwind/issues"
},
"homepage": "https://gustwind.js.org/",
"scripts": {
"test": "echo \"Use npm run quality:gate for the full verification suite or npm run test:e2e for Playwright.\" && exit 1",
"build": "node ./gustwind-node/cli.ts --build --output ./build",
"build:release": "node ./gustwind-node/cli.ts --build --output ./build --plugins ./plugins.release.json",
"build:node:check": "node ./gustwind-node/cli.ts --build --validate --output ./.tmp-node-build",
"build:npm:gustwind": "node ./scripts/build-npm-package.mjs gustwind",
"build:npm:htmlisp": "node ./scripts/build-npm-package.mjs htmlisp",
"release:local": "node ./scripts/release-local.mjs",
"benchmark:build": "node ./gustwind-node/cli.ts --benchmark --output ./.tmp-benchmark-build --benchmark-output ./benchmark-results.json",
"dev": "node ./gustwind-node/cli.ts --develop --port 3000",
"start": "npm run dev",
"start:netlify": "netlify dev",
"test:node:htmlisp": "node --test --test-concurrency=1 ./htmlisp/html-tests/*.ts ./htmlisp/html-tests-sync/*.ts ./htmlisp/utilities/*_test.ts ./htmlisp/parsers/htmlisp/*_test.ts ./htmlisp/parsers/latex/*_test.ts ./htmlisp/parsers/latex/parsers/*_test.ts ./htmlisp/parsers/latex/tests/*_test.ts",
"test:node:render": "node --test ./gustwind-node/mod_test.ts ./gustwind-node/build_test.ts",
"test:node:worker": "node --test ./cloudflare-worker/mod_test.ts",
"test:node:router": "node --test ./routers/utilities/*_test.ts",
"test:node:plugins": "node --test ./gustwind-utilities/plugins_test.ts",
"test:node:site": "node --test ./site/dataSources_test.ts",
"test:node:runtime": "node --test ./utilities/runtimeUtilitiesCache_test.ts",
"test:node:dev": "node --test ./gustwind-node/dev_test.ts",
"test:node:serve": "node --test ./gustwind-node/serve_test.ts",
"test:node:validate": "node --test ./gustwind-node/validate_test.ts",
"test:node:vite": "node --test ./utilities/vite_test.ts",
"test:node:benchmark": "node --test ./gustwind-node/benchmark_test.ts",
"test:node:package": "node --test ./scripts/build-npm-package_test.mjs",
"test:unit": "npm run test:node:htmlisp",
"validate:html": "node ./gustwind-node/cli.ts --validate --input ./build",
"watch:test": "node --test --watch --test-concurrency=1 ./htmlisp/html-tests/*.ts ./htmlisp/html-tests-sync/*.ts ./htmlisp/utilities/*_test.ts ./htmlisp/parsers/htmlisp/*_test.ts ./htmlisp/parsers/latex/*_test.ts ./htmlisp/parsers/latex/parsers/*_test.ts ./htmlisp/parsers/latex/tests/*_test.ts",
"serve": "node ./gustwind-node/cli.ts --serve --input ./build --port 3000",
"typecheck:code": "tsc --noEmit -p tsconfig.json",
"typecheck:e2e": "npm --prefix e2e run typecheck",
"typecheck": "npm run typecheck:code && npm run typecheck:e2e",
"quality:gate": "npm run typecheck && npm run test:unit && npm run test:node:render && npm run test:node:worker && npm run test:node:router && npm run test:node:plugins && npm run test:node:site && npm run test:node:runtime && npm run test:node:validate && npm run test:node:vite && npm run test:node:benchmark && npm run test:node:package && npm run build:node:check && npm run test:node:dev && npm run test:node:serve && npm run test:e2e",
"watch:build": "node --watch ./gustwind-node/cli.ts --build --output ./build",
"cf:build": "./build.sh",
"cf:deploy": "npm run cf:build && wrangler deploy",
"cf:dev": "wrangler dev",
"test:e2e": "npm --prefix e2e run test",
"test:e2e:headed": "npm --prefix e2e run test:headed"
},
"keywords": [],
"author": "Juho Vepsäläinen",
"license": "MIT",
"dependencies": {
"@tailwindcss/postcss": "4.3.0",
"@tailwindcss/typography": "0.5.19",
"@unocss/preset-wind3": "66.6.8",
"@unocss/runtime": "66.6.8",
"autoprefixer": "10.5.0",
"cssnano": "8.0.1",
"gray-matter": "4.0.3",
"highlight.js": "11.11.1",
"htm": "3.1.1",
"marked": "18.0.4",
"nanoid": "5.1.11",
"pagefind": "1.5.2",
"parse5": "8.0.1",
"postcss": "8.5.14",
"sharp": "0.34.5",
"tailwindcss": "4.3.0",
"tinyglobby": "0.2.16",
"vite": "8.0.13"
},
"engines": {
"node": ">=24"
},
"devDependencies": {
"@netlify/functions": "5.2.2",
"@types/node": "25.9.0",
"esbuild": "0.28.0",
"typescript": "6.0.3",
"wrangler": "4.92.0"
},
"overrides": {
"ws": "8.20.1"
}
}