From 9af05c2493fa92fd2f5ed397c13fa798b68ec5a0 Mon Sep 17 00:00:00 2001
From: Hong-Phuc Bui <hong-phuc.bui@htwsaar.de>
Date: Mon, 23 Sep 2024 12:58:40 +0200
Subject: [PATCH] update package name

---
 package.json |   25 ++++++++++++++-----------
 1 files changed, 14 insertions(+), 11 deletions(-)

diff --git a/package.json b/package.json
index f040868..7105e15 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,9 @@
 {
-  "name": "@mathcoach/ide-api",
+  "name": "mathcoach-ide-api",
   "version": "4.0.0",
   "description": "API zur MathCoach IDE",
+  "author": "jsteuer",
+  "license": "",
   "main": "./src/index.ts",
   "types": "dist/es6/index.d.ts",
   "directories": {
@@ -9,6 +11,17 @@
     "doc" : "docs",
     "dist" : "dist"
   },
+  "publishConfig" : {
+    "registry" : "https://bayes.htwsaar.de/nexus/repository/npm-mathcoach/"
+  },
+  "scripts": {
+    "clean": "rm -rf dist docs .cache",
+    "test": "npx nyc ava",
+    "build": "npm run clean  && npm run build-docs && npm run build-utils-es6 && npm run build-utils-lib",
+    "build-docs": "npx typedoc src/ --out docs/ --media ./media",
+    "build-utils-es6": "npx tsc --project tsconfig-es6.json",
+    "build-utils-lib": "npx parcel build src/index.ts --target node --bundle-node-modules --global MC_IDE_TOOL_UTILS --out-dir dist/lib --out-file mathcoach-ide-tool-utils.js --public-url ./ ; cp examples/standalone-usage.html dist/lib"
+  },
   "devDependencies": {
     "ava": "5.2.0",
     "nyc": "15.1.0",
@@ -18,16 +31,6 @@
     "typedoc": "0.24.7",
     "typescript": "5.0.4"
   },
-  "scripts": {
-    "clean": "rm -rf dist docs .cache",
-    "test": "npx nyc ava",
-    "build": "npm run clean  && npm run build-docs && npm run build-utils-es6 && npm run build-utils-lib",
-    "build-docs": "npx typedoc src/ --out docs/ --media ./media",
-    "build-utils-es6": "npx tsc --project tsconfig-es6.json",
-    "build-utils-lib": "npx parcel build src/index.ts --target node --bundle-node-modules --global MC_IDE_TOOL_UTILS --out-dir dist/lib --out-file mathcoach-ide-tool-utils.js --public-url ./ ; cp examples/standalone-usage.html dist/lib"
-  },
-  "author": "jsteuer",
-  "license": "",
   "ava": {
     "files": [
       "./test/**/*.spec.ts"

--
Gitblit v1.10.0-SNAPSHOT