changes to package.json to support npm releases

This commit is contained in:
simos
2025-09-23 01:23:43 +02:00
parent 771f7e4d7b
commit 70b421e5a8
2 changed files with 2095 additions and 15 deletions

2090
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,23 +1,32 @@
{ {
"name": "claude-code-ui", "name": "@siteboon/claude-code-ui",
"version": "1.8.1", "version": "1.8.1",
"description": "A web-based UI for Claude Code CLI", "description": "A web-based UI for Claude Code CLI",
"type": "module", "type": "module",
"main": "server/index.js", "main": "server/index.js",
"homepage": "https://claudecodeui.siteboon.ai",
"repository": {
"type": "git",
"url": "git+https://github.com/siteboon/claudecodeui.git"
},
"bugs": {
"url": "https://github.com/siteboon/claudecodeui/issues"
},
"scripts": { "scripts": {
"dev": "concurrently --kill-others \"npm run server\" \"npm run client\"", "dev": "concurrently --kill-others \"npm run server\" \"npm run client\"",
"server": "node server/index.js", "server": "node server/index.js",
"client": "vite --host", "client": "vite --host",
"build": "vite build", "build": "vite build",
"preview": "vite preview", "preview": "vite preview",
"start": "npm run build && npm run server" "start": "npm run build && npm run server",
"release": "release-it"
}, },
"keywords": [ "keywords": [
"claude", "claude coode",
"ai", "ai",
"code", "anthropic",
"ui", "ui",
"assistant" "mobile"
], ],
"author": "Claude Code UI Contributors", "author": "Claude Code UI Contributors",
"license": "MIT", "license": "MIT",
@@ -67,6 +76,7 @@
"concurrently": "^8.2.2", "concurrently": "^8.2.2",
"node-gyp": "^10.0.0", "node-gyp": "^10.0.0",
"postcss": "^8.4.32", "postcss": "^8.4.32",
"release-it": "^19.0.5",
"sharp": "^0.34.2", "sharp": "^0.34.2",
"tailwindcss": "^3.4.0", "tailwindcss": "^3.4.0",
"vite": "^7.0.4" "vite": "^7.0.4"