-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.97 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.97 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
{
"name": "evenwicht",
"version": "0.1.0",
"description": "A from-scratch TypeScript library and 48-chapter textbook covering calculus, linear algebra, probability, optimization, differential equations, time series, operator algebra, and fractional calculus — with applications across finance, machine learning, physics, and 21 further domains.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"author": "B.B. Jansen <bobjansen@pm.me>",
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/bbjansen/evenwicht"
},
"keywords": [
"mathematics",
"calculus",
"linear-algebra",
"statistics",
"optimization",
"time-series",
"differential-equations",
"operator-algebra",
"fractional-calculus",
"numerical-methods",
"symbolic-math",
"typescript"
],
"scripts": {
"build": "tsc",
"test": "vitest",
"test:run": "vitest run",
"lint": "eslint src/",
"validate-docs": "bash scripts/validate-docs.sh",
"verify": "python3 scripts/verify-numerics.py && python3 scripts/verify-cross-references.py && python3 scripts/verify-references.py --quick && python3 scripts/verify-math.py && python3 scripts/verify-glossary.py && python3 scripts/verify-diagrams.py && python3 scripts/verify-exercises.py && python3 scripts/verify-api-consistency.py",
"verify:numerics": "python3 scripts/verify-numerics.py",
"verify:refs": "python3 scripts/verify-references.py",
"verify:refs:quick": "python3 scripts/verify-references.py --quick",
"verify:math": "python3 scripts/verify-math.py",
"verify:spelling": "python3 scripts/verify-spelling.py",
"verify:glossary": "python3 scripts/verify-glossary.py",
"verify:diagrams": "python3 scripts/verify-diagrams.py",
"verify:crossrefs": "python3 scripts/verify-cross-references.py",
"verify:exercises": "python3 scripts/verify-exercises.py",
"verify:api": "python3 scripts/verify-api-consistency.py",
"verify:numbering": "python3 scripts/verify-numbering.py",
"verify:numbering:quick": "python3 scripts/verify-numbering.py --quick",
"verify:structure": "python3 scripts/verify-structure.py",
"report:wordcount": "python3 scripts/report-wordcount.py",
"build-pdf": "bash build/pdf/build.sh",
"build-pdf:draft": "bash build/pdf/build.sh --draft",
"build-pdf:quick": "bash build/pdf/build.sh --skip-render",
"build-site": "mkdocs build",
"serve-site": "mkdocs serve",
"graph:build": "python3 scripts/graph/parse.py",
"graph:analyze": "python3 scripts/graph/parse.py && python3 scripts/graph/analyze.py",
"graph": "python3 scripts/graph/parse.py && python3 scripts/graph/analyze.py"
},
"devDependencies": {
"typescript": "5.8.3",
"vitest": "3.1.3",
"eslint": "9.25.1",
"@typescript-eslint/eslint-plugin": "8.31.1",
"@typescript-eslint/parser": "8.31.1"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist/",
"LICENSE",
"README.md"
]
}