-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.9 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.9 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
{
"name": "wintrover-blog",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "node ./node_modules/vite/bin/vite.js",
"build": "node ./node_modules/vite/bin/vite.js build",
"preview": "node ./node_modules/vite/bin/vite.js preview",
"build:github": "tsx scripts/build-github.ts",
"preview:github": "node ./node_modules/vite/bin/vite.js preview --base=/",
"deploy:github": "npm run build:github",
"test": "vitest run",
"test:watch": "vitest",
"test:all": "npm run test",
"test:coverage": "vitest run --coverage",
"post:devto": "tsx scripts/post-to-dev.ts",
"sync:post-localization:staged": "tsx scripts/sync-post-localization.ts --mode=staged --write --stage",
"sync:post-localization:working": "tsx scripts/sync-post-localization.ts --mode=working --write",
"gate:procedure:ci": "tsx scripts/procedure-gate.ts --mode=ci",
"gate:procedure:staged": "tsx scripts/procedure-gate.ts --mode=staged",
"images:generate:ci": "tsx scripts/image-tools.ts generate-images-ci",
"svg:to-png": "tsx scripts/image-tools.ts svg-to-png",
"mcp:code-index": "code-index-mcp",
"typecheck": "tsc --noEmit",
"typecheck:all": "npm run typecheck",
"lint": "prek run --all-files",
"lint:all": "npm run lint",
"prepare": "node -e \"const fs=require('node:fs'); const cp=require('node:child_process'); const hasBun=(()=>{try{cp.execSync('bun --version',{stdio:'ignore'});return true;}catch{return false;}})(); if (fs.existsSync('.git')) { try { if (hasBun) { cp.execSync('bun x prek install --overwrite --hook-type pre-commit', { stdio: 'inherit' }); } else { cp.execSync('npx prek install --overwrite --hook-type pre-commit', { stdio: 'inherit' }); } } catch { cp.execSync('npx prek install --overwrite --hook-type pre-commit', { stdio: 'inherit' }); } }\"",
"stryker": "stryker run",
"knip": "knip",
"depcruise": "depcruise --config .dependency-cruiser.json src",
"mcp:context7-proxy": "tsx scripts/context7-toolname-proxy.ts"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@j178/prek": "^0.3.5",
"@stryker-mutator/core": "^9.6.0",
"@stryker-mutator/typescript-checker": "^9.6.0",
"@stryker-mutator/vitest-runner": "^9.6.0",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/svelte": "^5.3.1",
"@tsconfig/svelte": "^5.0.6",
"@types/node": "^25.0.3",
"@vitest/coverage-istanbul": "^4.0.16",
"@vitest/coverage-v8": "^4.0.16",
"@vitest/ui": "^4.0.16",
"dependency-cruiser": "^17.3.5",
"fast-check": "^4.5.0",
"jsdom": "^27.4.0",
"knip": "^5.78.0",
"mermaid": "^11.9.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vite": "^8.0.0",
"vitest": "^4.0.16"
},
"dependencies": {
"dotenv": "^17.2.1",
"gray-matter": "^4.0.3",
"marked": "^12.0.0",
"puppeteer": "^24.26.1",
"svelte": "^5.53.11",
"svelte-spa-router": "^4.0.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"@j178/prek",
"esbuild",
"puppeteer"
]
}
}