-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.56 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.56 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "storycore-engine",
"version": "1.0.0",
"description": "StoryCore Creative Studio - From Script to Screen in 5 Minutes",
"main": "dist/electron/main.js",
"bin": {
"storycore": "./dist/cli/storycore-cli.js"
},
"scripts": {
"test": "jest",
"test:ui": "jest \"./src/ui/**/*.test.tsx\"",
"cli:build": "tsc -p cli/tsconfig.json",
"cli:dev": "tsc -p cli/tsconfig.json --watch",
"storycore": "node dist/cli/storycore-cli.js",
"electron:dev": "npm run electron:build && cross-env NODE_ENV=development electron .",
"electron:build": "tsc -p electron/tsconfig.json",
"electron:build:watch": "tsc -p electron/tsconfig.json --watch",
"electron:start": "npm run electron:build && cross-env NODE_ENV=development electron .",
"ui:dev": "cd creative-studio-ui && npm run dev",
"ui:build": "cd creative-studio-ui && npm run build",
"backend:dev": "python -m backend.main_api",
"dev": "concurrently \"npm run backend:dev\" \"npm run electron:build:watch\" \"npm run ui:dev\" \"wait-on http://localhost:5173 && npm run electron:dev\"",
"build": "npm run ui:build && npm run electron:build",
"icons:generate": "electron-icon-builder --input=./StorycoreIconeV2.png --output=./build --flatten && node -e \"const fs = require('fs'); fs.copyFileSync('build/icons/icon.ico', 'build/icon.ico'); fs.copyFileSync('build/icons/icon.icns', 'build/icon.icns'); console.log('Icons copied to build root');\"",
"package": "npm run build && electron-builder",
"package:win": "npm run build && electron-builder --win",
"package:win:signed": "npm run build && electron-builder --win",
"package:mac": "npm run build && electron-builder --mac",
"package:mac:signed": "npm run build && electron-builder --mac",
"package:linux": "npm run build && electron-builder --linux"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zedarvates/StoryCore-Engine.git"
},
"keywords": [
"storycore",
"creative-studio",
"video-generation",
"ai",
"electron"
],
"author": "StoryCore Team",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/zedarvates/StoryCore-Engine/issues"
},
"homepage": "https://github.com/zedarvates/StoryCore-Engine#readme",
"dependencies": {
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"commander": "^12.0.0",
"lucide-react": "^0.562.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"sharp": "^0.34.5",
"typescript": "^5.9.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@testing-library/react": "^16.3.2",
"@types/jest": "^29.5.8",
"@types/node": "^20.9.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"concurrently": "^9.2.1",
"cross-env": "^7.0.3",
"electron": "^40.4.1",
"electron-builder": "^26.5.0",
"electron-icon-builder": "^2.0.1",
"electron-updater": "^6.7.3",
"esbuild": "^0.27.3",
"eslint": "^8.57.0",
"fast-check": "^3.15.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"wait-on": "^8.0.5"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/tests/**/*.test.ts",
"**/tests/**/*.test.tsx",
"**/electron/**/*.test.ts",
"**/electron/**/*.test.tsx",
"**/src/**/*.test.ts",
"**/src/**/*.test.tsx"
],
"moduleFileExtensions": [
"ts",
"js"
],
"collectCoverageFrom": [
"electron/**/*.ts",
"!electron/**/*.test.ts",
"!electron/**/*.d.ts"
]
}
}