@monodog/backend 1.1.9 → 1.1.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,14 +1,12 @@
1
1
  {
2
2
  "name": "@monodog/backend",
3
- "version": "1.1.9",
3
+ "version": "1.1.10",
4
4
  "description": "Backend API server for monodog monorepo dashboard",
5
- "main": "dist/setup-workspace.js",
5
+ "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "MIT",
8
8
  "bin": {
9
- "monodog-cli": "dist/cli.js",
10
- "monodog-workspace": "dist/setup-workspace.js"
11
-
9
+ "monodog-cli": "dist/cli.js"
12
10
  },
13
11
  "scripts": {
14
12
  "dev": "tsx watch src/index.ts",
@@ -21,8 +19,7 @@
21
19
  "clean": "rm -rf dist node_modules/.cache",
22
20
  "test:coverage": "jest --coverage",
23
21
  "lint": "eslint .",
24
- "lint:fix": "eslint . --fix",
25
- "postinstall": "pnpm run build && node dist/setup-workspace.js"
22
+ "lint:fix": "eslint . --fix"
26
23
  },
27
24
  "dependencies": {
28
25
  "@prisma/client": "^5.7.0",
@@ -1 +0,0 @@
1
- console.log('Hello from the packages/backend workspace!');
@@ -1,10 +0,0 @@
1
- {
2
- "name": "backend",
3
- "version": "1.0.0",
4
- "description": "Source code for the backend service.",
5
- "scripts": {
6
- "start": "node index.js",
7
- "dev": "echo \"Starting backend...\" && node index.js"
8
- },
9
- "devDependencies": {}
10
- }
@@ -1 +0,0 @@
1
- console.log('Hello from the packages/frontend workspace!');
@@ -1,10 +0,0 @@
1
- {
2
- "name": "frontend",
3
- "version": "1.0.0",
4
- "description": "Source code for the frontend service.",
5
- "scripts": {
6
- "start": "node index.js",
7
- "dev": "echo \"Starting frontend...\" && node index.js"
8
- },
9
- "devDependencies": {}
10
- }