-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json.new
More file actions
79 lines (79 loc) · 4.62 KB
/
package.json.new
File metadata and controls
79 lines (79 loc) · 4.62 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "oew",
"version": "1.0.10",
"type": "module",
"authors": [
{
"name": "Creative Organization DAO",
"email": "creatives@creativeplatform.xyz",
"url": "https://github.com/creativeplatform"
},
{
"name": "JEH Ventures, LLC",
"email": "support@jeldonmusic.com",
"url": "https://www.matrixblend.com"
}
],
"description": "Digital Audio Workstation (DAW) made in React",
"repository": {
"type": "git",
"url": "git+https://github.com/jhead12/orpheus-engine.git"
},
"private": true,
"main": "build/electron/main.js",
"engines": {
"node": ">=20.19.0",
"pnpm": ">=10.6.4"
},
"scripts": {
"cleanup": "chmod +x scripts/cleanup-duplicates.sh && ./scripts/cleanup-duplicates.sh",
"cleanup:archives": "rm -rf archives/app-tsx-* archives/editor-consolidation-* archives/workstation-consolidation-* archives/oew-main-backup-*",
"cleanup:temp": "rm -f *.patch *.backup* && rm -rf temp_check/ backup_changes/",
"cleanup:bak": "find ./workstation -name \"*.bak\" -type f -delete && find ./workstation -name \"*.bak\" -type d -exec rm -rf {} +",
"cleanup:verify": "node scripts/verify-cleanup.js",
"cleanup:all": "npm run cleanup && npm run cleanup:temp && npm run cleanup:archives && npm run cleanup:bak && npm run cleanup:verify",
"setup:electron": "chmod +x scripts/setup-electron-symlinks.sh && ./scripts/setup-electron-symlinks.sh",
"dev": "cross-env NODE_ENV=development nodemon --exec \"node electron-launch.mjs\"",
"dev:vite": "cross-env NODE_ENV=development vite",
"dev:local": "cross-env NODE_ENV=development VITE_PORT=3000 vite",
"dev:prod": "cross-env NODE_ENV=production vite",
"lint": "eslint \"workstation/frontend/src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint \"workstation/frontend/src/**/*.{js,jsx,ts,tsx}\" --fix",
"dev:headless": "cross-env NODE_ENV=development ELECTRON_DISABLE_GPU=1 ELECTRON_ENABLE_LOGGING=1 ELECTRON_NO_ATTACH_CONSOLE=1 electron . --disable-gpu --no-sandbox --headless --disable-dev-shm-usage --force-headless",
"build": "npm run test:screenshots && tsc -b && vite build && tsc --project electron/tsconfig.json && electron-builder",
"preview": "vite preview",
"start": "node electron-launch.js",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui --open",
"test:ui:full": "concurrently \"npm run test:ui\" \"npm run test:visual:ui\" \"npm run test:python:ui\"",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:integration:ui": "vitest --ui --config vitest.integration.config.ts --open",
"test:visual:ui": "vitest --ui --config vitest.visual.config.ts --open",
"test:python:ui": "python -m pytest --html=test-results/python-report.html --self-contained-html && open test-results/python-report.html",
"test:models": "vitest run --config vitest.models.config.ts",
"test:models:ui": "vitest --ui --config vitest.models.config.ts --open",
"test:data-transfer": "vitest run --config vitest.integration.config.ts --testNamePattern=\"data-transfer\"",
"pretest": "mkdir -p __snapshots__/screenshots __snapshots__/diffs __snapshots__/gifs test-results",
"test:screenshots": "pnpm pretest && vitest run --config vitest.visual.config.ts \".*\\.test\\.tsx?$\" --testNamePattern=\"@visual\" || true && node scripts/list-screenshots.js",
"list:screenshots": "node scripts/list-screenshots.js",
"setup:aliases": "node scripts/setup-aliases.js",
"refactor:sample": "node scripts/refactor-sample.js",
"refactor:imports": "node scripts/refactor-imports.js",
"refactor:imports:auto": "node scripts/refactor-imports-auto.js",
"fix-vite": "pnpm install --save-dev @vitejs/plugin-react",
"fix-electron-path": "node scripts/fix-electron-path.js",
"find-files": "ts-node scripts/findFiles.ts",
"find-large-files": "node scripts/find-large-files.js",
"validate:env": "node scripts/validate-env.js",
"predev": "npm run validate:env",
"prebuild": "npm run validate:env",
"test:visual": "vitest run \".*\\.test\\.tsx?$\" --testNamePattern=\"@visual\"",
"test:visual:update": "vitest run \".*\\.test\\.tsx?$\" --testNamePattern=\"@visual\" -u",
"generate:visual-tests": "ts-node scripts/visual-agent.js generate",
"generate:visual-test": "ts-node scripts/visual-agent.js generate",
"test:visual:gif": "vitest run \".*\\.test\\.tsx?$\" --testNamePattern=\"@visual-gif\"",
"test:visual:gif:update": "vitest run \".*\\.test\\.tsx?$\" --testNamePattern=\"@visual-gif\" -u",
"list:visual-tests": "ts-node scripts/visual-agent.js list"
}