-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.15 KB
/
package.json
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
{
"name": "supercut",
"version": "0.2.2",
"description": "",
"main": "index.js",
"bin": {
"supercut": "bin/supercut.js"
},
"type": "module",
"scripts": {
"dev": "nodemon -w src/server -x tsx src/server/index.ts",
"start": "NODE_ENV=production tsx src/server/main.ts",
"watch": "tsup --watch",
"build": "tsc --noemit && tsup ./src/cli/index.ts && just copy-files"
},
"keywords": [],
"author": "Daeinc",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/fluent-ffmpeg": "^2.1.24",
"@types/node": "^20.14.11",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"tsup": "^8.1.2",
"typescript": "^5.5.3"
},
"dependencies": {
"@daeinc/math": "^0.7.0",
"@google/generative-ai": "^0.15.0",
"@thi.ng/arrays": "^2.9.10",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"file-type": "^19.2.0",
"fluent-ffmpeg": "^2.1.3",
"kleur": "^4.1.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tsx": "^4.16.2",
"vite-express": "^0.17.0"
}
}