-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.13 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
{
"name": "clip-chimp",
"version": "0.1.0",
"private": true,
"description": "Clip Chimp — the all-in-one content creator companion. Watches long videos, finds clip-able moments, and slices them into platform-ready shorts. Runs entirely on your own machine.",
"type": "module",
"license": "MIT",
"author": "Stuart Brophy",
"homepage": "https://github.com/SBrophy-dev/clip-chimp#readme",
"repository": {
"type": "git",
"url": "https://github.com/SBrophy-dev/clip-chimp.git"
},
"bugs": {
"url": "https://github.com/SBrophy-dev/clip-chimp/issues"
},
"keywords": [
"video",
"clips",
"shorts",
"content-creation",
"ffmpeg",
"captions",
"local-first",
"tiktok",
"youtube-shorts",
"reels"
],
"workspaces": [
"server",
"web"
],
"scripts": {
"dev": "concurrently -n server,web -c cyan,magenta \"npm run dev -w server\" \"npm run dev -w web\"",
"dev:server": "npm run dev -w server",
"dev:web": "npm run dev -w web",
"build": "npm run build -w web",
"start": "npm run start -w server"
},
"devDependencies": {
"concurrently": "^9.1.0"
}
}