gitroll 0.1.0
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 +37 -0
- package/LICENSE +21 -0
- package/README.md +202 -0
- package/SECURITY.md +59 -0
- package/SPEC.md +144 -0
- package/dist/THIRD_PARTY_NOTICES.txt +19 -0
- package/dist/gitroll.mjs +11148 -0
- package/dist/web/THIRD_PARTY_NOTICES.txt +19 -0
- package/dist/web/app.js +118 -0
- package/dist/web/icon.svg +1 -0
- package/dist/web/index.html +67 -0
- package/dist/web/style.css +224 -0
- package/package.json +57 -0
- package/template/.gitattributes +3 -0
- package/template/.gitroll/config.yaml +2 -0
- package/template/.gitroll/types/.gitkeep +0 -0
- package/template/README.md +13 -0
- package/template/attachments/.gitkeep +0 -0
- package/template/entries/.gitkeep +0 -0
- package/template/projects/.gitkeep +0 -0
package/package.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "gitroll",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "A private logbook that lives in your own Git repository. Log what happened, find it later.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"gitroll": "dist/gitroll.mjs"
|
|
9
|
+
},
|
|
10
|
+
"engines": {
|
|
11
|
+
"node": ">=20"
|
|
12
|
+
},
|
|
13
|
+
"scripts": {
|
|
14
|
+
"build": "node scripts/build.mjs",
|
|
15
|
+
"prepare": "node scripts/build.mjs",
|
|
16
|
+
"gitroll": "node --disable-warning=ExperimentalWarning src/node/cli.ts",
|
|
17
|
+
"test": "node --disable-warning=ExperimentalWarning --test \"test/**/*.test.ts\"",
|
|
18
|
+
"typecheck": "tsc",
|
|
19
|
+
"build:core": "tsc -p packages/core/tsconfig.json"
|
|
20
|
+
},
|
|
21
|
+
"devDependencies": {
|
|
22
|
+
"@types/node": "^24.13.4",
|
|
23
|
+
"esbuild": "^0.28.2",
|
|
24
|
+
"typescript": "^5.9.3",
|
|
25
|
+
"yaml": "^2.9.1"
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"dist",
|
|
29
|
+
"template",
|
|
30
|
+
"README.md",
|
|
31
|
+
"SPEC.md",
|
|
32
|
+
"SECURITY.md",
|
|
33
|
+
"CHANGELOG.md",
|
|
34
|
+
"LICENSE"
|
|
35
|
+
],
|
|
36
|
+
"os": [
|
|
37
|
+
"darwin",
|
|
38
|
+
"linux",
|
|
39
|
+
"win32"
|
|
40
|
+
],
|
|
41
|
+
"keywords": [
|
|
42
|
+
"logbook",
|
|
43
|
+
"journal",
|
|
44
|
+
"git",
|
|
45
|
+
"local-first",
|
|
46
|
+
"privacy"
|
|
47
|
+
],
|
|
48
|
+
"author": "Jimmy Ho",
|
|
49
|
+
"homepage": "https://github.com/jimhoyd-com/gitroll#readme",
|
|
50
|
+
"repository": {
|
|
51
|
+
"type": "git",
|
|
52
|
+
"url": "git+https://github.com/jimhoyd-com/gitroll.git"
|
|
53
|
+
},
|
|
54
|
+
"bugs": {
|
|
55
|
+
"url": "https://github.com/jimhoyd-com/gitroll/issues"
|
|
56
|
+
}
|
|
57
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# My Roll
|
|
2
|
+
|
|
3
|
+
A [GitRoll](https://github.com/jimhoyd-com/gitroll) Roll: a private, chronological record of what happened.
|
|
4
|
+
|
|
5
|
+
- `entries/YYYY/MM/<id>.md`: one Markdown file per event, with YAML front matter
|
|
6
|
+
- `projects/<slug>.yaml`: projects that events reference
|
|
7
|
+
- `attachments/<sha256>.<ext>`: photos, receipts and documents, named by content hash
|
|
8
|
+
- `.gitroll/types/<id>.yaml`: optional custom event types
|
|
9
|
+
|
|
10
|
+
Every file uses an ordinary format. Edit files directly, commit, and push; GitRoll picks up the changes.
|
|
11
|
+
Run `gitroll check` to validate the Roll locally. No GitHub Actions are needed.
|
|
12
|
+
|
|
13
|
+
**Keep this repository private.**
|
|
File without changes
|
|
File without changes
|
|
File without changes
|