-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.12 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.12 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": "vimd",
"version": "0.5.11",
"description": "Real-time Markdown preview tool with pandoc (view markdown)",
"type": "module",
"keywords": [
"markdown",
"preview",
"live-reload",
"pandoc",
"cli",
"viewer",
"websocket"
],
"author": "notokeishou",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/notokeisho/vimd.git"
},
"homepage": "https://github.com/notokeisho/vimd#readme",
"bugs": {
"url": "https://github.com/notokeisho/vimd/issues"
},
"bin": {
"vimd": "./dist/cli/index.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"templates",
"filters",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "tsx src/cli/index.ts",
"build": "tsc && node scripts/set-executable.cjs && node scripts/copy-assets.cjs",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build && npm test"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.9",
"@types/markdown-it": "^14.1.2",
"@types/node": "^20.19.25",
"@types/polka": "^0.5.8",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^1.6.1",
"eslint": "^8.57.1",
"prettier": "^3.7.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^1.6.1"
},
"dependencies": {
"chalk": "^5.6.2",
"chokidar": "^3.6.0",
"commander": "^12.1.0",
"fs-extra": "^11.3.2",
"github-markdown-css": "^5.8.1",
"highlight.js": "^11.11.1",
"inquirer": "^9.3.8",
"markdown-it": "^14.1.0",
"markdown-it-strikethrough-alt": "^1.0.0",
"markdown-it-task-lists": "^2.1.1",
"open": "^9.1.0",
"polka": "^0.5.2",
"sirv": "^3.0.2",
"ws": "^8.18.3"
}
}