-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.65 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.65 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "mdspec",
"version": "0.3.5",
"description": "Markdown test runner for CLI docs and shell transcripts. Cram-style console blocks, persistent shell context, pattern matching, and snapshot updates.",
"keywords": [
"bash",
"bun",
"cli-testing",
"cram",
"docs-as-tests",
"doctest",
"markdown",
"markdown-testing",
"nodejs",
"shell",
"snapshot-testing",
"testing",
"trycmd"
],
"homepage": "https://mdspec.org/",
"bugs": {
"url": "https://github.com/beorn/mdspec/issues"
},
"license": "MIT",
"author": "Beorn",
"repository": {
"type": "git",
"url": "https://github.com/beorn/mdspec.git"
},
"bin": {
"mdspec": "./src/index.ts"
},
"files": [
"src"
],
"type": "module",
"exports": {
".": "./src/index.ts",
"./api": "./src/api.ts",
"./bun": "./src/integrations/bun.ts",
"./vitest": "./src/integrations/vitest.ts",
"./vitest-plugin": "./src/integrations/vitest-plugin.ts",
"./types": "./src/types.ts",
"./shell": "./src/shell.ts",
"./core": "./src/core.ts",
"./constants": "./src/constants.ts",
"./cmdSession": "./src/cmdSession.ts",
"./plugins/bash": "./src/plugins/bash.ts",
"./plugins/tape": "./src/plugins/tape.ts"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "bun src/index.ts tests/example.spec.md tests/features.spec.md",
"typecheck": "tsc --noEmit",
"ci": "bun run typecheck && bun test",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"prepare": "git config core.hooksPath .githooks 2>/dev/null || true"
},
"dependencies": {
"debug": "^4.4.3",
"github-slugger": "^2.0.0",
"glob": "^11.0.0",
"mdast-util-to-string": "^4.0.0",
"remark-parse": "^11.0.0",
"unified": "^11.0.5"
},
"devDependencies": {
"@bearly/vitepress-enrich": "^0.3.0",
"@silvery/commander": "^0.6.0",
"@types/bun": "latest",
"@types/debug": "^4.1.12",
"@types/mdast": "^4.0.4",
"@types/node": "^25.6.0",
"commander": "^14.0.1",
"loggily": "^0.4.2",
"typescript": "latest",
"vite": "^6.0.0",
"vitepress": "^1.6.4",
"vitepress-plugin-llms": "^1.12.0",
"vitest": "^3.0.0",
"zod": "^3.0.0"
},
"peerDependencies": {
"@termless/core": ">=0.3.0",
"@termless/vt100": ">=0.3.0",
"node-pty": ">=1.0.0"
},
"peerDependenciesMeta": {
"node-pty": {
"optional": true
},
"@termless/core": {
"optional": true
},
"@termless/vt100": {
"optional": true
}
},
"engines": {
"bun": ">=1.0.0",
"node": ">=23.6.0"
}
}