@blurname/debrief 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/LICENSE +21 -0
- package/README.md +188 -0
- package/dist/debrief.js +1207 -0
- package/package.json +39 -0
package/package.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@blurname/debrief",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Debrief your Debian box: snapshot every installed package (plus loose non-dpkg binaries) and track what drifts",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"debrief": "./dist/debrief.js"
|
|
8
|
+
},
|
|
9
|
+
"files": ["dist/debrief.js"],
|
|
10
|
+
"engines": {
|
|
11
|
+
"node": ">=18"
|
|
12
|
+
},
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+https://github.com/blurname/debrief.git"
|
|
16
|
+
},
|
|
17
|
+
"homepage": "https://github.com/blurname/debrief#readme",
|
|
18
|
+
"bugs": "https://github.com/blurname/debrief/issues",
|
|
19
|
+
"publishConfig": {
|
|
20
|
+
"access": "public"
|
|
21
|
+
},
|
|
22
|
+
"scripts": {
|
|
23
|
+
"start": "bun run bin/debrief.ts",
|
|
24
|
+
"test": "bun test",
|
|
25
|
+
"test:apt": "docker run --rm -v \"$PWD\":/app:ro oven/bun:debian bash /app/test/apt-e2e.sh",
|
|
26
|
+
"test:node": "bun run build && docker run --rm -e DEBRIEF_RUN='node /app/dist/debrief.js' -v \"$PWD\":/app:ro node:bookworm-slim bash /app/test/apt-e2e.sh",
|
|
27
|
+
"build": "bash scripts/build-js.sh",
|
|
28
|
+
"build:bin": "bash scripts/build-bin.sh",
|
|
29
|
+
"build:deb": "bash scripts/build-deb.sh",
|
|
30
|
+
"prepack": "bash scripts/build-js.sh",
|
|
31
|
+
"typecheck": "tsc --noEmit"
|
|
32
|
+
},
|
|
33
|
+
"keywords": ["debian", "apt", "dpkg", "package-manager", "package.json"],
|
|
34
|
+
"license": "MIT",
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"@types/bun": "latest",
|
|
37
|
+
"typescript": "^5"
|
|
38
|
+
}
|
|
39
|
+
}
|