-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 6.43 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 6.43 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "physics-book",
"version": "1.0.0",
"description": "Textbook for General Physics I",
"repository": "https://github.com/veillette/physics-book",
"type": "module",
"scripts": {
"prepare": "sh hooks/install.sh",
"install:hooks": "sh hooks/install.sh",
"check:links": "node scripts/check-links.js",
"check:links:fast": "node scripts/check-links.js --timeout 5000 --concurrent 15",
"check:orphans": "node scripts/check-orphans.js",
"check:orphans:cleanup": "node scripts/check-orphans.js --generate-cleanup",
"check:figures": "node scripts/check-figures.js",
"check:figures:pattern": "node scripts/check-figures.js --check-pattern",
"check:figures:missing": "node scripts/check-figures.js --check-missing",
"check:math": "node scripts/check-math.js",
"check:accessibility": "node scripts/check-accessibility.js",
"check:accessibility:strict": "node scripts/check-accessibility.js --strict",
"check:yaml": "node scripts/check-yaml.js",
"check:yaml:strict": "node scripts/check-yaml.js --strict",
"check:content": "node scripts/content.js",
"check:content:strict": "node scripts/content.js --strict",
"check:content:fix": "node scripts/content.js --fix",
"check:structure": "node scripts/check-structure.js",
"check:structure:strict": "node scripts/check-structure.js --strict",
"check:cross-refs": "node scripts/check-cross-references.js",
"check:cross-refs:strict": "node scripts/check-cross-references.js --strict",
"check:equations": "node scripts/equations.js",
"check:equations:strict": "node scripts/equations.js --strict",
"check:equations:fix": "node scripts/equations.js --fix",
"check:physics": "python check_math.py",
"lint:markdown": "node scripts/lint-markdown.js",
"lint:markdown:apply": "node scripts/lint-markdown.js --apply",
"lint:markdown:strict": "node scripts/lint-markdown.js --strict",
"fix:content": "node scripts/content.js --fix",
"fix:equations": "node scripts/equations.js --fix",
"fix:liquid": "node scripts/fix-liquid-syntax.js",
"fix:liquid:apply": "node scripts/fix-liquid-syntax.js --apply",
"fix:links": "node scripts/standardize-links.js",
"fix:links:apply": "node scripts/standardize-links.js --apply",
"generate:pdf": "node scripts/generate-pdf.js --all",
"generate:pdf:combined": "node scripts/generate-pdf.js --combined",
"generate:pdf:chapter": "node scripts/generate-pdf.js --chapter",
"generate:pdf:help": "node scripts/generate-pdf.js --help",
"generate:pdf:install": "npx playwright install chromium",
"generate:icons": "node scripts/generate-icons.js",
"generate:search-index": "node scripts/build-index.js",
"parse:summary": "node scripts/parse-summary.js",
"update:front-matter": "node scripts/update-front-matter.js",
"update:figures": "node scripts/rename-figures.js",
"convert:webp": "node scripts/convert-webp.js",
"convert:math-delimiters": "node scripts/convert_math_delimiters.js",
"convert:math-delimiters:apply": "node scripts/convert_math_delimiters.js --apply",
"sync:config": "node scripts/sync-config.js",
"deploy:validate": "node scripts/validate-deploy.js",
"deploy:validate:github": "node scripts/validate-deploy.js --github",
"deploy:validate:verbose": "node scripts/validate-deploy.js --verbose",
"crawl": "node scripts/crawl-all-pages.js",
"crawl:verbose": "node scripts/crawl-all-pages.js --verbose",
"crawl:errors": "node scripts/crawl-all-pages.js --errors-only",
"crawl:errors:fast": "node scripts/crawl-all-pages.js --errors-only --concurrent 10",
"find:latex": "node scripts/find-unrendered-latex.js",
"find:latex:verbose": "node scripts/find-unrendered-latex.js --verbose",
"find:latex:by-type": "node scripts/find-unrendered-latex.js --by-type",
"find:latex:json": "node scripts/find-unrendered-latex.js --json latex-issues.json",
"check:array-delimiters": "node scripts/check-array-delimiters.js",
"check:array-delimiters:verbose": "node scripts/check-array-delimiters.js --verbose",
"fix:subscript-spaces": "node scripts/fix-subscript-spaces.js",
"fix:subscript-spaces:apply": "node scripts/fix-subscript-spaces.js --apply",
"fix:array-begin": "node scripts/fix-array-begin-delimiter.js",
"fix:array-begin:apply": "node scripts/fix-array-begin-delimiter.js --apply",
"fix:array-end": "node scripts/fix-array-end-delimiter.js",
"fix:array-end:apply": "node scripts/fix-array-end-delimiter.js --apply",
"fix:math": "node scripts/fix-math-delimiters.js",
"fix:math:apply": "node scripts/fix-math-delimiters.js --apply",
"fix:math:verbose": "node scripts/fix-math-delimiters.js --verbose",
"lint": "eslint scripts/**/*.js *.js --no-warn-ignored",
"lint:fix": "eslint scripts/**/*.js *.js --fix --no-warn-ignored",
"format": "prettier --write \"scripts/**/*.js\" \"*.{js,json,md}\" \".github/**/*.yml\"",
"format:check": "prettier --check \"scripts/**/*.js\" \"*.{js,json,md}\" \".github/**/*.yml\"",
"jekyll:build": "bundle exec jekyll build",
"jekyll:serve": "bundle exec jekyll serve",
"jekyll:serve:livereload": "bundle exec jekyll serve --livereload",
"jekyll:clean": "bundle exec jekyll clean",
"build": "npm run jekyll:build",
"serve": "npm run jekyll:serve",
"test": "npm run check:links",
"test:ci": "npm run check:links -- --timeout 15000",
"test:unit": "vitest run",
"test:watch": "vitest",
"check:all": "npm run check:links && npm run check:orphans && npm run check:figures && npm run check:yaml && npm run check:accessibility && npm run check:math && npm run check:content && npm run check:structure && npm run check:cross-refs && npm run check:equations",
"audit": "npm run check:links && npm run check:orphans && npm run check:figures && npm run check:yaml && npm run check:accessibility && npm run check:content && npm run check:structure && npm run check:cross-refs && npm run check:equations"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.57.0",
"@types/node": "^25.0.3",
"chalk": "^5.3.0",
"cheerio": "^1.0.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"glob": "^13.0.0",
"gray-matter": "^4.0.3",
"http-server": "^14.1.1",
"js-yaml": "^4.1.1",
"minisearch": "^7.1.0",
"node-fetch": "^3.3.2",
"prettier": "^3.7.4",
"sharp": "^0.34.5",
"simple-git": "^3.19.1",
"vitest": "^4.0.16"
}
}