saterminal 0.2.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -1
- package/package.json +4 -1
- package/src/cli.ts +899 -0
- package/src/main.ts +10 -1
- package/src/progress.ts +48 -0
- package/src/state.ts +115 -6
- package/src/tui/app.ts +51 -15
- package/src/tui/frame.ts +210 -0
- package/src/tui/input.ts +33 -2
- package/src/tui/kit.ts +0 -20
- package/src/tui/question.ts +2 -60
- package/src/tui/render.ts +74 -83
- package/src/tui/types.ts +3 -0
- package/src/types/terminal-kit.d.ts +3 -0
- package/src/types.ts +17 -0
- package/.envrc +0 -1
- package/AGENTS.md +0 -23
- package/bun.lock +0 -100
- package/flake.lock +0 -59
- package/flake.nix +0 -21
- package/src/tui/terminal.ts +0 -110
- package/test/api.test.ts +0 -80
- package/test/focus.test.ts +0 -55
- package/test/state.test.ts +0 -167
- package/test/text.test.ts +0 -72
- package/test/viewport.test.ts +0 -39
- package/tsconfig.json +0 -13
package/README.md
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
why?
|
|
2
2
|
|
|
3
3
|
- i don't like how the official SAT question bank forces u to download PDFs
|
|
4
|
-
- official SAT question bank + other third party question readers display the question difficulty and other metadata
|
|
4
|
+
- official SAT question bank + other third party question readers display the question difficulty and other metadata (their UIs are also quite chopped)
|
|
5
|
+
- used to use oneprep until i heard they started AI-generating questions, sooo...
|
package/package.json
CHANGED