-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.3 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
{
"name": "@askrjs/website",
"version": "0.1.2",
"private": true,
"description": "Askr marketing and documentation site",
"license": "Apache-2.0",
"type": "module",
"scripts": {
"dev": "vp dev",
"build": "npm run build:client && npm run build:llms && npm run build:ssg",
"postbuild": "npm run test:static",
"build:client": "vp build --outDir .askr/client",
"build:llms": "tsx ./scripts/generate-llm-docs.ts",
"build:ssg": "askr ssg --config ./ssg.config.ts --output ./dist && cp ./dist/404/index.html ./dist/404.html",
"analyze": "askr analyze --check",
"docs:snapshot": "UPDATE_PACKAGE_SNAPSHOT=1 vp test run tests/package-snapshot-contract.test.ts",
"lint": "vp lint src tests scripts ssg.config.ts vite.config.ts",
"fmt": "vp fmt .",
"fmt:check": "vp fmt . --check",
"test:unit": "vp test run --exclude tests/generated-output-contract.test.ts --exclude \"tests/browser/**\"",
"test:static": "vp test run tests/generated-output-contract.test.ts",
"test": "npm run test:unit && npm run test:browser",
"test:browser": "vp test run -c vitest.test.browser.config.ts --mode production",
"typecheck": "tsc --noEmit",
"check": "npm run fmt:check && npm run lint && npm run typecheck && npm test && npm run build",
"preview": "vp preview --outDir dist"
},
"dependencies": {
"@askrjs/askr": "0.2.3",
"@askrjs/charts": "0.2.0",
"@askrjs/fetch": "0.2.1",
"@askrjs/i18n": "0.2.0",
"@askrjs/logos": "0.2.1",
"@askrjs/lucide": "0.2.1",
"@askrjs/monaco": "0.2.1",
"@askrjs/otel": "0.2.0",
"@askrjs/themes": "0.2.4",
"@askrjs/ui": "0.2.3",
"@fontsource-variable/domine": "^5.3.0"
},
"devDependencies": {
"@askrjs/auth": "0.2.1",
"@askrjs/cli": "0.2.1",
"@askrjs/node": "0.2.1",
"@askrjs/schema": "0.2.1",
"@askrjs/server": "0.2.1",
"@askrjs/testing": "0.2.1",
"@askrjs/vite": "0.2.1",
"@types/node": "^26.3.0",
"@typescript/native": "npm:typescript@^7.0.2",
"@vitest/browser-playwright": "4.1.10",
"monaco-editor": "^0.56.0",
"playwright": "^1.62.1",
"tsx": "4.23.12",
"typescript": "npm:@typescript/typescript6@^6.0.2",
"vite-plus": "^0.2.8"
},
"overrides": {
"dompurify": "3.4.13"
},
"engines": {
"node": ">=24.0.0"
},
"packageManager": "npm@12.0.1"
}