-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.68 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
{
"name": "@cntryl/website",
"version": "1.0.0",
"private": true,
"description": "Cntryl marketing and product documentation site",
"type": "module",
"scripts": {
"dev": "vp dev",
"build": "npm run build:client && npm run build:ssg",
"build:client": "vp build --outDir .askr/client",
"build:ssg": "askr ssg --config ./ssg.config.ts --output ./dist && cp ./dist/404/index.html ./dist/404.html",
"lint": "vp lint src scripts tests ssg.config.ts vite.config.ts",
"fmt": "vp fmt src scripts tests ssg.config.ts vite.config.ts index.html package.json tsconfig.json README.md",
"fmt:check": "vp fmt src scripts tests ssg.config.ts vite.config.ts index.html package.json tsconfig.json README.md --check",
"test": "npm run test:unit",
"test:unit": "vp test run",
"typecheck": "tsc --noEmit",
"analyze": "askr analyze --check",
"verify:static": "tsx ./scripts/verify-static-output.ts",
"generate:docs-manifest": "tsx ./scripts/generate-docs-manifest.ts",
"check": "npm run fmt:check && npm run analyze && npm run lint && npm run typecheck && npm run test:unit && npm run build && npm run verify:static",
"preview": "vp preview --outDir dist"
},
"dependencies": {
"@askrjs/askr": "0.0.84",
"@askrjs/logos": "^0.0.5",
"@askrjs/lucide": "0.0.6",
"@askrjs/themes": "0.0.19",
"@askrjs/ui": "0.0.23"
},
"devDependencies": {
"@askrjs/cli": "0.0.17",
"@askrjs/vite": "0.0.10",
"@types/node": "^26.1.2",
"tsx": "4.23.1",
"typescript": "^7.0.2",
"vite-plus": "0.2.7"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"askr": {
"analyze": {
"exclude": [
"**/.askr/**"
]
}
}
}