-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 854 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 854 Bytes
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
{
"name": "learn-auto-research",
"private": true,
"version": "0.1.0",
"description": "Course docs for Learn AutoResearch — teach automated research with Karpathy-inspired autonomous improvement loops.",
"scripts": {
"dev": "vitepress dev docs",
"build": "vitepress build docs",
"preview": "vitepress preview docs",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"lecture:run": "tsx",
"pdf:export": "node --import tsx scripts/build-course-pdfs.ts",
"pdf:build": "npm run docs:build && npm run pdf:export"
},
"devDependencies": {
"mermaid": "^11.14.0",
"pdf-lib": "^1.17.1",
"playwright": "^1.59.1",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitepress": "^1.6.4",
"vitepress-plugin-mermaid": "^2.0.17"
}
}