-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.77 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.77 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
{
"name": "@gdquest/process-course",
"version": "0.1.12-0",
"description": "This script processes the course content into the format compatible with the new GDSchool platform. It is not intended to be used outside of the GDQuest team.",
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"bin": {
"process-course": "./dist/cli.mjs",
"script-info": "./dist/scriptInfo.mjs"
},
"scripts": {
"?============== Run ==============": "",
"?start": "echo Runs the cli software",
"start": "npx --yes tsx src/cli.mts",
"?============== build ==============": "",
"?build": "echo Builds everything. Runs before publishing",
"build": "run-s build:*",
"?build:typescript": "echo Compiles everything to typescript",
"build:typescript": "tsc",
"?================= dev ============": "",
"?dev:watch": "echo Compiles type and watches",
"dev:watch": "tsc -w",
"dev:bump:npm": "npm --no-git-tag-version version prepatch",
"dev:bump:file": "replace-in-file --search=\"'(.*?)'\" --replace=\"'$npm_package_version'\" src/version.mts",
"?dev:bump": "echo Bump the version and create a git version and a git commit, as a pre-release",
"dev:bump": "run-s dev:bump:npm dev:bump:file",
"============== lifecycle ===============": "",
"prepublish": "run-s build",
"?================= info ============": "",
"?info": "echo Shows some details about commands",
"info": "script-info"
},
"keywords": [],
"author": "GDQuest <info@gdquest.org>",
"maintainers": [
"LumenWrites <lumenwrites@gmail.com> (https://lumenwrites.dev/)"
],
"repository": {
"url": "git+https://github.com/GDQuest/process-course.git"
},
"bugs": {
"url": "https://github.com/GDQuest/process-course/issues"
},
"license": "MIT",
"devDependencies": {
"@types/adm-zip": "^0.5.1",
"@types/fs-extra": "^11.0.1",
"@types/hast": "^3.0.2",
"@types/klaw-sync": "^6.0.2",
"@types/lqip-modern": "^1.1.4",
"@types/mdast": "^4.0.2",
"@types/node": "^20.8.10",
"mdast-util-mdx-jsx": "^3.0.0",
"npm-run-all": "^4.1.5",
"typescript": "^5.2.2"
},
"dependencies": {
"@kinda-ok/convenient": "workspace:^",
"@kinda-ok/convenient-node": "workspace:^",
"adm-zip": "^0.5.10",
"anylogger": "^1.0.11",
"chokidar": "^3.5.3",
"fs-extra": "^11.1.1",
"gray-matter": "^4.0.3",
"klaw-sync": "^6.0.0",
"lqip-modern": "^2.0.0",
"next-mdx-remote": "^4.4.1",
"pino": "^8.15.0",
"rehype-autolink-headings": "^7.0.0",
"rehype-code-titles": "^1.2.0",
"rehype-prism-plus": "^1.6.3",
"rehype-slug": "^6.0.0",
"remark-gfm": "^3.0.1",
"remark-unwrap-images": "^4.0.0",
"slugify": "^1.6.6",
"ulog": "2.0.0-beta.19",
"unist-util-visit": "^5.0.0",
"vfile": "^5.3.7"
}
}