jsonresume-theme-typewriter-modern 1.1.0 → 1.1.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/CHANGELOG.md +7 -0
- package/README.md +36 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/README.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# Typewriter Modern
|
|
2
|
+
|
|
3
|
+
Nostalgic typewriter aesthetic with monospace body and contemporary clarity.
|
|
4
|
+
|
|
5
|
+

|
|
6
|
+
|
|
7
|
+
**Tags:** typewriter, monospace, vintage, writer, researcher, developer, retro
|
|
8
|
+
|
|
9
|
+
## Use it
|
|
10
|
+
|
|
11
|
+
Preview it live on the JSON Resume registry:
|
|
12
|
+
|
|
13
|
+
- https://registry.jsonresume.org/thomasdavis?theme=typewriter-modern
|
|
14
|
+
|
|
15
|
+
Install and use it with the JSON Resume CLI:
|
|
16
|
+
|
|
17
|
+
```sh
|
|
18
|
+
npm install jsonresume-theme-typewriter-modern
|
|
19
|
+
resume export resume.html --theme typewriter-modern
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Sections
|
|
23
|
+
|
|
24
|
+
Renders all standard JSON Resume sections: work, education, skills, projects, volunteer, awards, publications, languages, interests, references.
|
|
25
|
+
|
|
26
|
+
## Development
|
|
27
|
+
|
|
28
|
+
This theme lives in the [jsonresume.org](https://github.com/jsonresume/jsonresume.org) monorepo. Build it from the repo root with:
|
|
29
|
+
|
|
30
|
+
```sh
|
|
31
|
+
pnpm --filter jsonresume-theme-typewriter-modern build
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## License
|
|
35
|
+
|
|
36
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jsonresume-theme-typewriter-modern",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Nostalgic typewriter aesthetic with monospace body and contemporary clarity",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"react-dom": "^18.0.0 || ^19.0.0"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@jsonresume/core": "0.
|
|
21
|
+
"@jsonresume/core": "0.2.0",
|
|
22
22
|
"styled-components": "6.1.19"
|
|
23
23
|
},
|
|
24
24
|
"exports": {
|