-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.59 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
{
"name": "nextcourse",
"version": "4.1.0",
"description": "An agent that designs courses — needs, positioning and learning outcomes first, then the Reveal.js deck and the full delivery pack (facilitator guide, workbook, rubric, assessment plan) derived from them.",
"homepage": "https://course.skillnode.ai",
"repository": {
"type": "git",
"url": "git+https://github.com/skill-node/nextcourse.git"
},
"bugs": {
"url": "https://github.com/skill-node/nextcourse/issues"
},
"engines": {
"node": ">=20"
},
"main": "nextcourse.js",
"bin": {
"nextcourse": "nextcourse.js"
},
"//files": "装到别人机器上的东西。lib/plugin 只带 notes —— 其余 5 个 Reveal 插件全仓库无人引用; lib/dist 整个保留, 因为 export 会把它拷进离线交付包。字体的 *.LICENSE.txt 跟着 lib/fonts 一起进包, SIL OFL 1.1 要求副本随字体分发。",
"files": [
"nextcourse.js",
"paths.js",
"build.js",
"check.js",
"package.js",
"export.js",
"pdf.js",
"lint-slides.js",
"animate-slides.js",
"render-md.js",
"course-model.js",
"composition/",
"shot.js",
"theme-gallery.js",
"templates/",
"shared_styles/",
"docs/",
"examples/",
"lib/dist/",
"lib/plugin/notes/",
"lib/fonts/",
"lib/LICENSE",
"DESIGN-SYSTEM.md",
"AGENT.md",
"CLI_MANUAL.md",
"CLI_MANUAL.en.md",
"THIRD-PARTY-NOTICES.md"
],
"scripts": {
"test": "node --test test/*.test.js",
"compose": "node nextcourse.js compose",
"validate": "node nextcourse.js validate",
"trace": "node nextcourse.js trace",
"impact": "node nextcourse.js impact",
"sync": "node nextcourse.js sync",
"list": "node nextcourse.js list",
"check": "node nextcourse.js check",
"lint": "node nextcourse.js lint",
"animate": "node nextcourse.js animate",
"build": "node nextcourse.js build",
"render": "node nextcourse.js render",
"package": "node nextcourse.js package",
"export": "node nextcourse.js export",
"pdf": "node nextcourse.js pdf",
"notes": "node nextcourse.js notes",
"shot": "node nextcourse.js shot",
"themes": "node nextcourse.js themes"
},
"keywords": [
"nextcourse",
"course-design",
"instructional-design",
"learning-outcomes",
"curriculum-design",
"delivery-package",
"facilitator-guide",
"rubric",
"kirkpatrick",
"pdf-export",
"reveal.js",
"slides",
"presentation",
"education",
"training",
"agent"
],
"author": "Kurtlee (https://nextskill.cc)",
"license": "MIT"
}