-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.61 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.61 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
{
"name": "parse-a-slide",
"version": "0.0.1",
"description": "parse-a-slide is a standalone command-line interface (CLI) tool designed to streamline the creation, processing, and management of slide-based presentations. It empowers users to author presentations using familiar Markdown (.md) or MDX (.mdx) syntax and then transforms these source files into structured, ready-to-use formats.",
"author": "Adam Jelinek",
"license": "MIT",
"bin": {
"parse-a-slide": "dist/cli/index.js"
},
"main": "dist/cli/index.js",
"types": "dist/cli/index.d.ts",
"scripts": {
"build": "tsc",
"test": "vitest --run",
"dev": "tsc -w",
"run": "node dist/cli/index.js"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"dependencies": {
"chokidar": "^3.6.0",
"fast-glob": "^3.3.2",
"glob": "^10.4.5",
"gray-matter": "^4.0.3",
"handlebars": "^4.7.8",
"highlight.js": "^11.9.0",
"js-yaml": "^4.1.0",
"marked": "^12.0.2",
"nanoid": "^5.1.5",
"neverthrow": "^8.2.0",
"typescript": "^5.4.5",
"yargs": "^17.7.2"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@types/js-yaml": "^4.0.9",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.14.2",
"@types/yargs": "^17.0.32",
"jsdom": "^26.1.0",
"vitest": "^1.6.0"
},
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@10.6.5+sha512.cdf928fca20832cd59ec53826492b7dc25dc524d4370b6b4adbf65803d32efaa6c1c88147c0ae4e8d579a6c9eec715757b50d4fa35eea179d868eada4ed043af"
}