-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.4 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.4 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
{
"name": "markshell",
"version": "1.8.0",
"description": "markshell allows you to output any markdown file formatted and style to the console",
"keywords": [
"markdown",
"shell",
"nodejs",
"chalk",
"CLI",
"CLI addons",
"node",
"console",
"output",
"shell extension",
"CLI development"
],
"main": "lib/index.js",
"lib": "lib/index.js",
"bin": {
"markshell": "./bin/markshell.js"
},
"homepage": "https://github.com/stfbauer/markshell#readme",
"scripts": {
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest --coverage",
"test:old": "node test/index.js",
"testRun": "node ./lib/index.js",
"update-types": "./tools/typings.sh"
},
"files": [
"lib",
"bin",
"docs"
],
"funding": "https://github.com/sponsors/StfBauer",
"bugs": {
"url": "https://github.com/stfbauer/markshell/issues"
},
"author": "Stefan Bauer",
"license": "MIT",
"dependencies": {
"@types/prismjs": "1.26",
"chalk": "^4.1.2",
"jsdom": "^27.3.0",
"prismjs": "^1.30.0",
"wrap-ansi": "^9.0.2"
},
"devDependencies": {
"@types/node": "^24.10.2",
"@types/prismjs": "^1.16.1",
"@vitest/coverage-v8": "^1.6.1",
"@vitest/ui": "^1.0.0",
"vitest": "^1.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stfbauer/markshell.git"
}
}