-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.13 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
{
"name": "@divmain/meander",
"version": "1.3.0",
"description": "Walkthrough generator — annotated code walkthroughs with comments, hosted on Val Town",
"license": "MIT",
"author": "Dale Bustad <github@dale.link>",
"homepage": "https://github.com/divmain/meander#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/divmain/meander.git"
},
"bugs": {
"url": "https://github.com/divmain/meander/issues"
},
"keywords": [
"walkthrough",
"documentation",
"static-site-generator",
"code-tour",
"comments",
"val-town"
],
"type": "module",
"packageManager": "pnpm@11.0.0-rc.5",
"engines": {
"node": ">=20.0.0"
},
"bin": {
"meander": "./dist/cli.mjs"
},
"files": [
"dist",
"assets"
],
"scripts": {
"build": "node scripts/build.mts",
"check": "node scripts/check.mts",
"clean": "node scripts/clean.mts",
"cover": "node scripts/cover.mts",
"dev": "node scripts/dev.mts",
"fix": "node scripts/fix.mts",
"lint": "node scripts/lint.mts",
"test": "node scripts/test.mts",
"test:val": "node --test assets/val/lib/*.test.ts",
"type": "tsc --noEmit",
"update": "node scripts/update.mts",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@sinclair/typebox": "0.34.48",
"@valtown/sdk": "1.0.0",
"marked": "18.0.0",
"node-html-parser": "7.1.0",
"svgo": "4.0.1"
},
"devDependencies": {
"@socketsecurity/lib": "5.24.0",
"@types/node": "24.9.2",
"@typescript/native-preview": "7.0.0-dev.20260415.1",
"@vitest/coverage-v8": "4.0.3",
"ecc-agentshield": "1.4.0",
"esbuild": "0.25.11",
"fast-glob": "3.3.3",
"mermaid": "11.14.0",
"oxfmt": "0.37.0",
"oxlint": "1.52.0",
"puppeteer": "24.42.0",
"taze": "19.9.2",
"type-coverage": "2.29.7",
"typescript": "5.9.2",
"vitest": "4.0.3",
"yoctocolors-cjs": "2.1.3"
},
"typeCoverage": {
"atLeast": 99,
"cache": true,
"detail": true,
"ignoreAsAssertion": true,
"ignoreCatch": true,
"ignoreNonNullAssertion": true,
"ignoreUnreadAnys": true,
"is": 99,
"strict": true
}
}