-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.39 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.39 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
{
"name": "openloop",
"version": "0.1.0",
"description": "Local-first marketing slideshow generator for project-based campaigns.",
"license": "MIT",
"type": "module",
"keywords": [
"marketing",
"screenshots",
"app-store",
"slides",
"local-first"
],
"repository": {
"type": "git",
"url": "git+https://github.com/oscarlehuu/openloop.git"
},
"bugs": {
"url": "https://github.com/oscarlehuu/openloop/issues"
},
"homepage": "https://github.com/oscarlehuu/openloop#readme",
"engines": {
"node": ">=20"
},
"files": [
"assets/images",
"compiled/src",
"docs",
"README.md",
"LICENSE",
"SECURITY.md",
"CONTRIBUTING.md",
"CODE_OF_CONDUCT.md",
"SUPPORT.md"
],
"bin": {
"openloop": "compiled/src/cli/openloop-cli.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"check": "npm run typecheck && npm test",
"dev": "tsx src/dashboard/dashboard-server.ts",
"dev:cli": "tsx src/cli/openloop-cli.ts",
"openloop": "tsx src/cli/openloop-cli.ts",
"prepack": "npm run build",
"test": "vitest run",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"commander": "^14.0.2",
"openai": "^6.8.1",
"sharp": "^0.34.5",
"zod": "^4.1.13"
},
"devDependencies": {
"@types/node": "^25.0.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
}
}