forked from tadaspetra/loop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.37 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.37 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
{
"name": "loop",
"version": "1.0.0",
"main": "src/main.js",
"scripts": {
"build:styles": "tailwindcss -i ./src/renderer/styles/tailwind.input.css -o ./src/renderer/styles/main.css --minify",
"start": "npm run build:styles && electron .",
"dev": "npm run build:styles && electron .",
"lint": "eslint . --max-warnings=0",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "vitest run --coverage",
"test:watch": "vitest",
"test:e2e": "node tests/e2e/smoke-electron.test.mjs",
"package:smoke": "node scripts/package-smoke.mjs",
"check": "npm run lint && npm run typecheck && npm run test && npm run test:e2e && npm run package:smoke"
},
"devDependencies": {
"@electron/packager": "^19.1.0",
"@eslint/js": "^10.0.1",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.0",
"electron": "^35.1.2",
"eslint": "^10.0.3",
"globals": "^17.4.0",
"jsdom": "^28.1.0",
"prettier": "^3.8.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"dependencies": {
"@elevenlabs/elevenlabs-js": "^2.36.0",
"dotenv": "^17.3.1",
"electron-reload": "^2.0.0-alpha.1",
"ffmpeg-static": "^5.3.0",
"node-fetch": "^2.7.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"electron",
"ffmpeg-static"
]
}
}