monorepotime 1.1.19 → 1.2.0
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/README.md +72 -24
- package/dist/.opencode.json +1 -0
- package/dist/index.js +89615 -55453
- package/package.json +10 -5
- package/public/assets/fa-brands-400-BfBXV7Mm.woff2 +0 -0
- package/public/assets/fa-regular-400-BVHPE7da.woff2 +0 -0
- package/public/assets/fa-solid-900-8GirhLYJ.woff2 +0 -0
- package/public/assets/index-Bw_zxotH.css +1 -0
- package/public/assets/index-DiZldPHh.js +1594 -0
- package/public/index.html +11 -13
- package/public/logo.svg +4 -16
- package/public/logohtml.svg +32 -0
- package/public/opencode.jpg +0 -0
- package/public/assets/index-BIcpaQYx.js +0 -1534
- package/public/assets/index-VXKj7u1n.css +0 -1
- package/public/vite.svg +0 -1
package/package.json
CHANGED
|
@@ -1,24 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "monorepotime",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "monorepo gui tool",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"scripts": {
|
|
7
|
-
"dev": "NODE_ENV=development nodemon --watch 'src/**/*.ts' --watch '../../packages/**/*.ts' --exec 'ts-node' src/index.ts",
|
|
7
|
+
"dev": "NODE_ENV=development nodemon --ignore '**/*.json' --watch 'src/**/*.ts' --watch '../../packages/**/*.ts' --exec 'ts-node' src/index.ts",
|
|
8
8
|
"build": "tsup",
|
|
9
9
|
"start": "node dist/index.js",
|
|
10
|
-
"stop": "npx -y kill-port
|
|
10
|
+
"stop": "npx -y kill-port 4792",
|
|
11
11
|
"predep": "rm -rf public && mkdir -p public && cp -r ../web/dist/* public/",
|
|
12
12
|
"publish": "npm publish --access public",
|
|
13
|
-
"beta": "npm publish --access public --tag beta"
|
|
13
|
+
"beta": "npm publish --access public --tag beta",
|
|
14
|
+
"localtest": "npm run build && npm install -g ."
|
|
14
15
|
},
|
|
15
16
|
"dependencies": {
|
|
17
|
+
"@opencode-ai/sdk": "^1.2.1",
|
|
16
18
|
"chalk": "^4.1.2",
|
|
17
19
|
"cors": "^2.8.5",
|
|
18
20
|
"execa": "^9.6.1",
|
|
19
|
-
"express": "^
|
|
21
|
+
"express": "^5.2.1",
|
|
20
22
|
"fast-glob": "^3.3.3",
|
|
21
23
|
"fs-extra": "^11.3.3",
|
|
24
|
+
"kill-port": "^2.0.1",
|
|
25
|
+
"node-pty": "^1.1.0",
|
|
22
26
|
"open": "^11.0.0",
|
|
23
27
|
"pidusage": "^4.0.1",
|
|
24
28
|
"socket.io": "^4.8.3",
|
|
@@ -41,6 +45,7 @@
|
|
|
41
45
|
"@types/cors": "^2.8.19",
|
|
42
46
|
"@types/express": "^5.0.6",
|
|
43
47
|
"@types/fs-extra": "^11.0.4",
|
|
48
|
+
"@types/kill-port": "^2.0.3",
|
|
44
49
|
"@types/node": "^24.10.9",
|
|
45
50
|
"@types/pidusage": "^2.0.5",
|
|
46
51
|
"apiroute": "*",
|
|
Binary file
|
|
Binary file
|
|
Binary file
|