Skip to content

Commit 2d4dbdd

Browse files
committed
Fix: Update npm run
1 parent 2de9158 commit 2d4dbdd

File tree

2 files changed

+3
-13
lines changed

2 files changed

+3
-13
lines changed

README.md renamed to INSTALLATION.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,5 @@
11
# TensorBlock Studio
22

3-
An Electron-based desktop application for interacting with various AI models via API.
4-
5-
## Features
6-
7-
- Chat with AI via OpenAI's API
8-
- Extensible architecture for adding multiple AI service providers
9-
- Built with React, Vite, TypeScript, and TailwindCSS
10-
- Electron for cross-platform desktop support
11-
- Model selection dialog with provider-specific model lists
12-
133
## Getting Started
144

155
### Prerequisites

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
"type": "module",
66
"main": "app/out-tsc/main.js",
77
"scripts": {
8-
"dev": "concurrently \"npm run npm:electron:serve\" \"npm run npm:vite:dev\"",
8+
"dev": "concurrently \"npm run electron:serve\" \"npm run vite:dev\"",
99
"vite:dev": "vite",
10-
"build": "vite build && npm run npm:electron:serve-tsc",
11-
"build:prod": "vite build --mode production && npm run npm:electron:serve-tsc",
10+
"build": "vite build && npm run electron:serve-tsc",
11+
"build:prod": "vite build --mode production && npm run electron:serve-tsc",
1212
"electron:serve-tsc": "tsc -p app/tsconfig.json",
1313
"electron:serve": "wait-on tcp:5173 && npm run electron:serve-tsc && electron . --serve",
1414
"electron:build:current_platform": "rimraf ./release/ && npm run build:prod && electron-builder build --publish=never",

0 commit comments

Comments
 (0)