monoverse 0.0.9 → 0.0.11
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/LICENCE +1 -0
- package/README.md +18 -0
- package/dist/assets/index-DIUWvkwu.css +1 -0
- package/dist/assets/index-UQPMV9jG.js +161 -0
- package/dist/assets/index.lazy-B2wDxrXt.js +21 -0
- package/dist/cli.js +483 -0
- package/dist/index.html +14 -0
- package/dist/vite.svg +1 -0
- package/package.json +90 -57
- package/Readme.md +0 -7
- package/build/index.js +0 -65727
- package/build/metafile.js.json +0 -1
- package/build/metafile.server.json +0 -1
- package/cli.js +0 -22
- package/public/android-chrome-192x192.png +0 -0
- package/public/android-chrome-512x512.png +0 -0
- package/public/apple-touch-icon.png +0 -0
- package/public/build/_assets/app-PR3B5ESH.css +0 -1
- package/public/build/_shared/chunk-7QPZBUTN.js +0 -249
- package/public/build/_shared/chunk-G2LHOEOK.js +0 -32
- package/public/build/_shared/chunk-G5WX4PPA.js +0 -1
- package/public/build/_shared/chunk-GWUFOIPA.js +0 -1
- package/public/build/entry.client-7KM2QASU.js +0 -1
- package/public/build/manifest-E3061131.js +0 -1
- package/public/build/root-ELHOT54E.js +0 -1
- package/public/build/routes/_index-Z3FARNV4.js +0 -125
- package/public/build/routes/api-H3ZMS4LW.js +0 -1
- package/public/favicon-16x16.png +0 -0
- package/public/favicon-32x32.png +0 -0
- package/public/favicon.ico +0 -0
- package/public/fonts/roboto-flex-v9-latin-regular.woff2 +0 -0
package/package.json
CHANGED
|
@@ -1,72 +1,105 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "monoverse",
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"sideEffects": false,
|
|
3
|
+
"version": "0.0.11",
|
|
4
|
+
"type": "module",
|
|
6
5
|
"author": {
|
|
7
|
-
"name": "Kishore"
|
|
8
|
-
|
|
9
|
-
|
|
6
|
+
"name": "Kishore"
|
|
7
|
+
},
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/pkishorez/monoverse"
|
|
11
|
+
},
|
|
12
|
+
"bin": {
|
|
13
|
+
"monoverse": "dist/cli.js"
|
|
14
|
+
},
|
|
15
|
+
"publishConfig": {
|
|
16
|
+
"access": "public"
|
|
10
17
|
},
|
|
11
|
-
"type": "commonjs",
|
|
12
|
-
"bin": "cli.js",
|
|
13
18
|
"files": [
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"cli.js"
|
|
19
|
+
"dist/",
|
|
20
|
+
"README.md"
|
|
17
21
|
],
|
|
18
22
|
"dependencies": {
|
|
19
|
-
"@
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
23
|
+
"@monorepo-utils/package-utils": "^2.10.4",
|
|
24
|
+
"@radix-ui/react-label": "^2.0.2",
|
|
25
|
+
"@radix-ui/react-tabs": "^1.0.4",
|
|
26
|
+
"@trpc/server": "11.0.0-next.327",
|
|
27
|
+
"@vercel/speed-insights": "^1.0.11",
|
|
28
|
+
"adm-zip": "^0.5.12",
|
|
29
|
+
"cors": "^2.8.5",
|
|
30
|
+
"express": "^4.19.2",
|
|
31
|
+
"semver": "^7.5.4",
|
|
32
|
+
"sort-package-json": "^2.10.0",
|
|
33
|
+
"tiny-invariant": "^1.3.1",
|
|
34
|
+
"zod": "^3.22.4"
|
|
24
35
|
},
|
|
25
36
|
"devDependencies": {
|
|
26
|
-
"@
|
|
27
|
-
"@
|
|
28
|
-
"@
|
|
29
|
-
"@
|
|
30
|
-
"@
|
|
31
|
-
"@
|
|
32
|
-
"@
|
|
33
|
-
"@
|
|
34
|
-
"@
|
|
35
|
-
"@
|
|
36
|
-
"@
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
37
|
+
"@changesets/cli": "^2.27.5",
|
|
38
|
+
"@radix-ui/react-dialog": "^1.0.5",
|
|
39
|
+
"@radix-ui/react-dropdown-menu": "^2.0.6",
|
|
40
|
+
"@radix-ui/react-scroll-area": "^1.0.5",
|
|
41
|
+
"@radix-ui/react-slot": "^1.0.2",
|
|
42
|
+
"@tanstack/react-query": "^5.28.9",
|
|
43
|
+
"@tanstack/react-router": "^1.24.0",
|
|
44
|
+
"@tanstack/react-table": "^8.15.3",
|
|
45
|
+
"@tanstack/router-devtools": "^1.24.0",
|
|
46
|
+
"@tanstack/router-vite-plugin": "^1.24.1",
|
|
47
|
+
"@trpc/client": "11.0.0-next.327",
|
|
48
|
+
"@trpc/react-query": "11.0.0-next.327",
|
|
49
|
+
"@types/adm-zip": "^0.5.5",
|
|
50
|
+
"@types/d3": "^7.4.3",
|
|
51
|
+
"@types/eslint": "^8.44.7",
|
|
52
|
+
"@types/express": "^4.17.21",
|
|
53
|
+
"@types/lodash-es": "^4.17.12",
|
|
54
|
+
"@types/node": "^20.11.30",
|
|
55
|
+
"@types/react": "^18.2.66",
|
|
56
|
+
"@types/react-dom": "^18.2.22",
|
|
57
|
+
"@types/semver": "^7.5.4",
|
|
58
|
+
"@typescript-eslint/eslint-plugin": "^7.2.0",
|
|
59
|
+
"@typescript-eslint/parser": "^7.2.0",
|
|
60
|
+
"@vitejs/plugin-react": "^4.2.1",
|
|
61
|
+
"autoprefixer": "^10.4.19",
|
|
62
|
+
"class-variance-authority": "^0.7.0",
|
|
63
|
+
"clsx": "^2.1.0",
|
|
64
|
+
"d3": "^7.9.0",
|
|
65
|
+
"eslint": "^8.57.0",
|
|
66
|
+
"eslint-import-resolver-typescript": "^3.6.1",
|
|
67
|
+
"eslint-plugin-import": "^2.29.0",
|
|
68
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
69
|
+
"eslint-plugin-react-refresh": "^0.4.6",
|
|
70
|
+
"eslint-plugin-tailwindcss": "^3.15.1",
|
|
71
|
+
"fixturez": "^1.1.0",
|
|
72
|
+
"framer-motion": "^11.0.24",
|
|
73
|
+
"lodash-es": "^4.17.21",
|
|
74
|
+
"lucide-react": "^0.363.0",
|
|
75
|
+
"postcss": "^8.4.38",
|
|
45
76
|
"react": "^18.2.0",
|
|
46
77
|
"react-dom": "^18.2.0",
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
"
|
|
78
|
+
"react-rewards": "^2.0.4",
|
|
79
|
+
"tailwind-merge": "^2.2.2",
|
|
80
|
+
"tailwindcss": "^3.4.3",
|
|
81
|
+
"tailwindcss-animate": "^1.0.7",
|
|
82
|
+
"tsup": "^8.0.2",
|
|
83
|
+
"typescript": "^5.4.3",
|
|
84
|
+
"vite": "^5.2.0",
|
|
85
|
+
"vite-express": "^0.16.0",
|
|
86
|
+
"vite-plugin-eslint": "^1.8.1",
|
|
87
|
+
"vite-tsconfig-paths": "^4.3.2",
|
|
88
|
+
"vitest": "^0.34.6",
|
|
89
|
+
"zustand": "^4.5.2"
|
|
58
90
|
},
|
|
59
91
|
"scripts": {
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"build": "run
|
|
63
|
-
"build:
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
92
|
+
"build:frontend": "vite build --mode production",
|
|
93
|
+
"build:vercel-api": "tsup vercel/[trpc].ts --format esm --out-dir api --minify --treeshake",
|
|
94
|
+
"build:vercel": "npm run build:frontend && npm run build:vercel-api",
|
|
95
|
+
"build:cli": "tsup cli.ts --format esm",
|
|
96
|
+
"build": "npm run build:frontend && npm run build:cli",
|
|
97
|
+
"release": "npm run build",
|
|
98
|
+
"dev": "vite",
|
|
99
|
+
"dev:server": "npx tsx watch dev.ts",
|
|
100
|
+
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
101
|
+
"preview": "vite preview",
|
|
102
|
+
"shadcn": "npx shadcn-ui@latest",
|
|
103
|
+
"test": "vitest"
|
|
71
104
|
}
|
|
72
105
|
}
|
package/Readme.md
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
# Monorepo tools 🚀
|
|
2
|
-
|
|
3
|
-
## Concepts.
|
|
4
|
-
|
|
5
|
-
1. A `monorepo` is collection of workspaces. A `workspace` conceptually could be any app/package.
|
|
6
|
-
2. A `workspace` consists of a name, depedencies, devDependencies, optionalDependencies, and others.
|
|
7
|
-
3. Each dependency entry consist of package name + `versionRange`. `versionRange` could be a pinned version like "2.4.7" or a more broader "^2.3.1". Nevertheless we consider the value to be a broader versionRange.
|