recappi 0.1.7 → 0.1.9
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/dist/index.js +20 -1
- package/dist/index.js.map +1 -1
- package/package.json +17 -15
- package/helpers/README.md +0 -15
- package/helpers/darwin-arm64/.gitkeep +0 -1
- package/helpers/darwin-arm64/RecappiMiniSidecar +0 -0
- package/helpers/darwin-x64/.gitkeep +0 -1
- package/helpers/win32-arm64/.gitkeep +0 -1
- package/helpers/win32-x64/.gitkeep +0 -1
package/package.json
CHANGED
|
@@ -1,18 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "recappi",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.9",
|
|
4
4
|
"private": false,
|
|
5
5
|
"bin": {
|
|
6
6
|
"recappi": "./dist/index.js"
|
|
7
7
|
},
|
|
8
8
|
"files": [
|
|
9
|
-
"dist"
|
|
10
|
-
"helpers"
|
|
9
|
+
"dist"
|
|
11
10
|
],
|
|
12
11
|
"type": "module",
|
|
13
12
|
"publishConfig": {
|
|
14
13
|
"access": "public"
|
|
15
14
|
},
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build": "tsup",
|
|
17
|
+
"build:helper": "../../scripts/build-cli-helper.sh",
|
|
18
|
+
"test": "vp test",
|
|
19
|
+
"typecheck": "tsc --noEmit",
|
|
20
|
+
"check": "pnpm run typecheck && pnpm run test && pnpm run build",
|
|
21
|
+
"lint:package": "publint run --strict && attw --pack . --no-emoji",
|
|
22
|
+
"pack:check": "pnpm run build && node scripts/check-pack.mjs && pnpm run lint:package"
|
|
23
|
+
},
|
|
16
24
|
"dependencies": {
|
|
17
25
|
"better-sqlite3": "12.10.1",
|
|
18
26
|
"chalk": "^5.6.2",
|
|
@@ -21,6 +29,9 @@
|
|
|
21
29
|
"music-metadata": "^11.10.3",
|
|
22
30
|
"react": "^19.2.7"
|
|
23
31
|
},
|
|
32
|
+
"optionalDependencies": {
|
|
33
|
+
"recappi-helper-darwin-arm64": "0.1.9"
|
|
34
|
+
},
|
|
24
35
|
"devDependencies": {
|
|
25
36
|
"@arethetypeswrong/cli": "^0.18.4",
|
|
26
37
|
"@types/node": "^24.10.1",
|
|
@@ -29,19 +40,10 @@
|
|
|
29
40
|
"publint": "^0.3.21",
|
|
30
41
|
"tsup": "^8.5.1",
|
|
31
42
|
"typescript": "^5.9.3",
|
|
32
|
-
"vite": "
|
|
33
|
-
"vitest": "
|
|
43
|
+
"vite": "catalog:",
|
|
44
|
+
"vitest": "catalog:"
|
|
34
45
|
},
|
|
35
46
|
"engines": {
|
|
36
47
|
"node": ">=20"
|
|
37
|
-
},
|
|
38
|
-
"scripts": {
|
|
39
|
-
"build": "tsup",
|
|
40
|
-
"build:helper": "../../scripts/build-cli-helper.sh",
|
|
41
|
-
"test": "vp test",
|
|
42
|
-
"typecheck": "tsc --noEmit",
|
|
43
|
-
"check": "pnpm run typecheck && pnpm run test && pnpm run build",
|
|
44
|
-
"lint:package": "publint run --strict && attw --pack . --no-emoji",
|
|
45
|
-
"pack:check": "pnpm run build && node scripts/check-pack.mjs && pnpm run lint:package"
|
|
46
48
|
}
|
|
47
|
-
}
|
|
49
|
+
}
|
package/helpers/README.md
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
This directory contains native recording helpers bundled in the npm package.
|
|
2
|
-
|
|
3
|
-
The CLI selects helpers by `process.platform` and `process.arch`:
|
|
4
|
-
|
|
5
|
-
- `darwin-arm64/RecappiMiniSidecar`
|
|
6
|
-
- `darwin-x64/RecappiMiniSidecar`
|
|
7
|
-
- `win32-x64/RecappiMiniSidecar.exe`
|
|
8
|
-
- `win32-arm64/RecappiMiniSidecar.exe`
|
|
9
|
-
|
|
10
|
-
Development builds can override helper resolution with `--sidecar-command` or
|
|
11
|
-
`RECAPPI_MINI_SIDECAR`.
|
|
12
|
-
|
|
13
|
-
Run `scripts/build-cli-helper.sh` from the repository root before `pnpm pack` or
|
|
14
|
-
`pnpm publish`; `pack:check` fails if the package does not include at least one
|
|
15
|
-
Darwin helper executable.
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
|