-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.64 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@argo-video/cli",
"version": "0.38.2",
"description": "Turn Playwright demo scripts into polished product demo videos with AI voiceover",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"argo": "./bin/argo.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsc && npm run copy-assets",
"copy-assets": "mkdir -p dist/transitions/shaders && cp src/transitions/shaders/*.glsl dist/transitions/shaders/",
"test": "vitest run",
"test:watch": "vitest"
},
"peerDependencies": {
"@playwright/test": ">=1.59.0",
"playwright": ">=1.59.0"
},
"dependencies": {
"@huggingface/transformers": "^4.2.0",
"commander": "^12.0.0",
"gsap": "^3.15.0",
"kokoro-js": "^1.2.1"
},
"overrides": {
"kokoro-js": {
"@huggingface/transformers": "$@huggingface/transformers"
},
"ws": "^8.21.0",
"form-data": "^4.0.6",
"vite": "^7.3.5",
"esbuild": "^0.28.1",
"protobufjs": "^7.6.3"
},
"optionalDependencies": {
"@elevenlabs/elevenlabs-js": "^2.0.0",
"@google/genai": "^1.0.0",
"openai": "^4.0.0",
"sarvamai": "^1.0.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/shreyaskarnik/argo.git"
},
"license": "MIT",
"files": [
"dist",
"bin",
"scripts"
],
"devDependencies": {
"@playwright/test": "^1.59.1",
"@types/node": "^25.5.0",
"playwright": "^1.59.1",
"typescript": "^5.5.0",
"vitest": "^3.2.6"
}
}