-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.05 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
{
"name": "archiv",
"version": "0.7.16",
"description": "Read-only, local-first backup and search for Venice.ai browser content",
"private": true,
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/docherty/archiv.git"
},
"bugs": {
"url": "https://github.com/docherty/archiv/issues"
},
"engines": {
"node": ">=18"
},
"keywords": [
"venice-ai",
"backup",
"browser-storage",
"local-first"
],
"type": "module",
"scripts": {
"start": "node cli/venice-archive.mjs serve",
"archive": "node cli/venice-archive.mjs",
"test": "node --test tests/*.test.mjs && node tests/release-checks.mjs",
"check:release": "node tests/release-checks.mjs",
"check:local-artifact": "node tests/local-artifact-regression.mjs",
"audit:recovery": "node scripts/audit-missing-media.mjs",
"recover:legacy": "node scripts/recover-legacy-content.mjs",
"repair:media": "node cli/venice-archive.mjs materialize-media",
"verify:archive": "node scripts/verify-archive.mjs"
}
}