/ package.json
package.json
 1  {
 2  	"name": "ipmc",
 3  	"version": "0.2.2",
 4  	"main": "index.js",
 5  	"license": "MIT",
 6  	"private": true,
 7  	"type": "module",
 8  	"packageManager": "yarn@4.6.0",
 9  	"scripts": {
10  		"dev": "yarn workspaces foreach -Api run dev",
11  		"watch": "yarn workspaces foreach -Api --no-private --exclude ipmc-desktop run dev",
12  		"build": "yarn workspaces foreach -Apt run build",
13  		"test": "yarn workspaces foreach -Apt run test",
14  		"cli": "yarn workspace ipmc-tools run cli"
15  	},
16  	"workspaces": [
17  		"packages/*"
18  	],
19  	"devDependencies": {
20  		"typescript": "^5.7.3"
21  	}
22  }