@geenius/docs 0.5.0 → 0.8.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 +21 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geenius/docs",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.10",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Geenius Docs — Provider-based documentation primitives and Storybook review apps for React, SolidJS, and Convex.",
|
|
6
6
|
"author": "Mehdi Nabhani",
|
|
@@ -32,14 +32,29 @@
|
|
|
32
32
|
"LICENSE",
|
|
33
33
|
"CHANGELOG.md"
|
|
34
34
|
],
|
|
35
|
+
"scripts": {
|
|
36
|
+
"changeset": "changeset",
|
|
37
|
+
"build": "pnpm --filter ./packages/shared build && pnpm -r --filter './packages/*' --filter '!./packages/shared' build",
|
|
38
|
+
"lint": "pnpm exec biome check package.json vitest.config.ts __tests__ packages && pnpm --filter ./packages/shared type-check && pnpm -r --filter './packages/*' --filter '!./packages/shared' type-check",
|
|
39
|
+
"type-check": "pnpm --filter ./packages/shared type-check && pnpm -r --filter './packages/*' --filter '!./packages/shared' type-check",
|
|
40
|
+
"test:unit": "pnpm -r --filter './packages/*' test && vitest run __tests__/parity.test.ts",
|
|
41
|
+
"test:exports": "vitest run __tests__/exports.test.ts --passWithNoTests",
|
|
42
|
+
"test:types": "pnpm exec tsc -p tsconfig.type-tests.json --noEmit && npm_config_cache=/tmp/.npm-cache attw --pack --ignore-rules cjs-resolves-to-esm",
|
|
43
|
+
"test": "pnpm build && pnpm run test:unit && pnpm run test:exports && pnpm run test:types",
|
|
44
|
+
"clean": "pnpm -r --filter './packages/*' clean",
|
|
45
|
+
"storybook:react": "pnpm --filter @geenius/docs-storybook-react dev",
|
|
46
|
+
"storybook:solidjs": "pnpm --filter @geenius/docs-storybook-solidjs dev",
|
|
47
|
+
"lint:pub": "publint",
|
|
48
|
+
"prepublishOnly": "pnpm build"
|
|
49
|
+
},
|
|
35
50
|
"dependencies": {
|
|
51
|
+
"@geenius/motion": "workspace:*",
|
|
52
|
+
"@geenius/tools": "workspace:*",
|
|
36
53
|
"clsx": "^2.1.1",
|
|
37
54
|
"gray-matter": "^4.0.3",
|
|
38
55
|
"react-markdown": "^10.1.0",
|
|
39
56
|
"remark-gfm": "^4.0.1",
|
|
40
|
-
"solid-markdown": "^2.1.1"
|
|
41
|
-
"@geenius/motion": "0.4.0",
|
|
42
|
-
"@geenius/tools": "0.3.0"
|
|
57
|
+
"solid-markdown": "^2.1.1"
|
|
43
58
|
},
|
|
44
59
|
"peerDependencies": {
|
|
45
60
|
"convex": ">=1.34.0",
|
|
@@ -70,7 +85,7 @@
|
|
|
70
85
|
"vitest": "^4.1.4"
|
|
71
86
|
},
|
|
72
87
|
"engines": {
|
|
73
|
-
"node": ">=
|
|
88
|
+
"node": ">=22.0.0"
|
|
74
89
|
},
|
|
75
90
|
"exports": {
|
|
76
91
|
".": {
|
|
@@ -135,19 +150,5 @@
|
|
|
135
150
|
"types": "./packages/shared/dist/index.d.ts",
|
|
136
151
|
"publishConfig": {
|
|
137
152
|
"access": "public"
|
|
138
|
-
},
|
|
139
|
-
"scripts": {
|
|
140
|
-
"changeset": "changeset",
|
|
141
|
-
"build": "pnpm --filter ./packages/shared build && pnpm -r --filter './packages/*' --filter '!./packages/shared' build",
|
|
142
|
-
"lint": "pnpm exec biome check package.json vitest.config.ts __tests__ packages && pnpm --filter ./packages/shared type-check && pnpm -r --filter './packages/*' --filter '!./packages/shared' type-check",
|
|
143
|
-
"type-check": "pnpm --filter ./packages/shared type-check && pnpm -r --filter './packages/*' --filter '!./packages/shared' type-check",
|
|
144
|
-
"test:unit": "pnpm -r --filter './packages/*' test && vitest run __tests__/parity.test.ts",
|
|
145
|
-
"test:exports": "vitest run __tests__/exports.test.ts --passWithNoTests",
|
|
146
|
-
"test:types": "pnpm exec tsc -p tsconfig.type-tests.json --noEmit && npm_config_cache=/tmp/.npm-cache attw --pack --ignore-rules cjs-resolves-to-esm",
|
|
147
|
-
"test": "pnpm build && pnpm run test:unit && pnpm run test:exports && pnpm run test:types",
|
|
148
|
-
"clean": "pnpm -r --filter './packages/*' clean",
|
|
149
|
-
"storybook:react": "pnpm --filter @geenius/docs-storybook-react dev",
|
|
150
|
-
"storybook:solidjs": "pnpm --filter @geenius/docs-storybook-solidjs dev",
|
|
151
|
-
"lint:pub": "publint"
|
|
152
153
|
}
|
|
153
|
-
}
|
|
154
|
+
}
|