-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.1 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
36
37
38
39
40
41
42
43
44
{
"name": "avsync",
"version": "0.1.0",
"private": false,
"type": "module",
"description": "Browser-based audio-video sync tool for aligning external audio tracks with video using spectrograms, frame-precise preview, and FFmpeg WASM export.",
"license": "MIT",
"keywords": [
"avsync",
"audio",
"video",
"sync",
"audio-video-sync",
"sync-audio-to-video",
"align-audio-video",
"replace-video-audio",
"spectrogram",
"ffmpeg",
"ffmpeg-wasm",
"web-audio",
"browser-tool"
],
"homepage": "https://avsync.dhimanseal.com",
"repository": {
"type": "git",
"url": "git+https://github.com/Dhi13man/avsync.git"
},
"bugs": {
"url": "https://github.com/Dhi13man/avsync/issues"
},
"author": "Dhiman Seal",
"scripts": {
"check": "npm run check:js && npm run lint:md",
"check:js": "node --check server.js && node --check public/app.js",
"lint:md": "markdownlint-cli2 \"**/*.md\" \"!node_modules\"",
"start": "node server.js"
},
"engines": {
"node": ">=22"
},
"devDependencies": {
"markdownlint-cli2": "^0.23.2"
}
}