-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.62 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.62 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
{
"name": "build-your-own-pi-textbook",
"version": "0.1.0",
"private": true,
"description": "Executable Chinese engineering textbook for building a Pi-style agent from first principles",
"license": "SEE LICENSE IN LICENSE",
"author": "Chunhao Zhang",
"repository": {
"type": "git",
"url": "git+https://github.com/hahhforest/pi-textbook.git"
},
"bugs": {
"url": "https://github.com/hahhforest/pi-textbook/issues"
},
"engines": {
"node": ">=22.13.0"
},
"scripts": {
"content:build": "node scripts/build-content.mjs",
"learning:verify": "node scripts/validate-learning-contract.mjs && node --test tests/learning-contract.test.mjs tests/practice-sandbox.test.mjs tests/chinese-prose.test.mjs",
"history:sync": "node scripts/sync-checkpoint-history.mjs",
"history:verify": "node --test tests/checkpoint-manifest.test.mjs && npm run content:build && node --experimental-strip-types scripts/verify-course-history.mjs",
"predev": "npm run content:build",
"dev": "WRANGLER_LOG_PATH=.wrangler/wrangler.log vinext dev",
"prebuild": "npm run content:build",
"build": "WRANGLER_LOG_PATH=.wrangler/wrangler.log vinext build",
"start": "WRANGLER_LOG_PATH=.wrangler/wrangler.log vinext start",
"typecheck": "tsc --noEmit && tsc -p workshop/tsconfig.json --noEmit",
"workshop:build": "tsc -p workshop/tsconfig.json",
"workshop:test": "node scripts/run-workshop-tests.mjs",
"workshop:verify": "node scripts/run-workshop-tests.mjs",
"test": "npm run learning:verify && npm run workshop:verify && npm run build && node --test tests/rendered-html.test.mjs",
"lint": "eslint . --ignore-pattern dist --ignore-pattern .next --ignore-pattern workshop/.dist",
"db:generate": "drizzle-kit generate"
},
"dependencies": {
"drizzle-orm": "0.45.2",
"lucide-react": "^1.24.0",
"next": "16.2.11",
"react": "19.2.7",
"react-dom": "19.2.7"
},
"devDependencies": {
"@cloudflare/vite-plugin": "1.45.1",
"@tailwindcss/postcss": "4.2.1",
"@types/node": "22.19.19",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.2",
"@vitejs/plugin-rsc": "0.5.26",
"drizzle-kit": "0.31.10",
"eslint": "9.39.4",
"eslint-config-next": "16.2.11",
"marked": "^18.0.6",
"react-server-dom-webpack": "19.2.7",
"tailwindcss": "4.2.1",
"typescript": "5.9.3",
"vinext": "0.0.50",
"vite": "8.1.5",
"wrangler": "4.112.0"
},
"overrides": {
"@esbuild-kit/core-utils": {
"esbuild": "0.25.12"
},
"fast-uri": "3.1.4",
"postcss": "8.5.20",
"sharp": "0.35.3"
},
"type": "module"
}