@voidzero-dev/vitepress-theme 0.0.14 → 0.0.16

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.
Files changed (25) hide show
  1. package/dist/index.js +6544 -0
  2. package/dist/index.js.map +1 -0
  3. package/package.json +21 -15
  4. package/index.ts +0 -44
  5. /package/{assets → dist/assets}/checkmark.svg +0 -0
  6. /package/{assets → dist/assets}/primary-button-background.jpg +0 -0
  7. /package/{assets → dist/assets}/terminal-background.jpg +0 -0
  8. /package/{components → dist/components}/Eyebrow.vue +0 -0
  9. /package/{components → dist/components}/Footer.vue +0 -0
  10. /package/{components → dist/components}/Header.vue +0 -0
  11. /package/{components → dist/components}/RiveAnimation.vue +0 -0
  12. /package/{components → dist/components}/Terminal.vue +0 -0
  13. /package/{components → dist/components}/terminal-animations/TerminalAnimation1.vue +0 -0
  14. /package/{components → dist/components}/terminal-animations/TerminalAnimation2.vue +0 -0
  15. /package/{components → dist/components}/terminal-animations/TerminalAnimation3.vue +0 -0
  16. /package/{components → dist/components}/terminal-animations/TerminalAnimation4.vue +0 -0
  17. /package/{components → dist/components}/terminal-animations/TerminalAnimation5.vue +0 -0
  18. /package/{components → dist/components}/terminal-animations/TerminalAnimation6.vue +0 -0
  19. /package/{composables → dist/composables}/useTypewriter.ts +0 -0
  20. /package/{fonts → dist/fonts}/APK-Protocol-Medium.woff2 +0 -0
  21. /package/{fonts → dist/fonts}/KHTeka-Medium.woff2 +0 -0
  22. /package/{fonts → dist/fonts}/KHTeka-Regular.woff2 +0 -0
  23. /package/{fonts → dist/fonts}/KHTekaMono-Medium.woff2 +0 -0
  24. /package/{fonts → dist/fonts}/KHTekaMono-Regular.woff2 +0 -0
  25. /package/{style.css → dist/style.css} +0 -0
package/package.json CHANGED
@@ -1,32 +1,32 @@
1
1
  {
2
2
  "name": "@voidzero-dev/vitepress-theme",
3
- "version": "0.0.14",
3
+ "version": "0.0.16",
4
4
  "description": "Shared VitePress theme for VoidZero projects",
5
5
  "type": "module",
6
- "main": "./index.ts",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
7
9
  "exports": {
8
10
  ".": {
9
- "style": "./style.css",
10
- "import": "./index.ts"
11
- }
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js"
13
+ },
14
+ "./style.css": "./dist/style.css"
12
15
  },
13
16
  "files": [
14
- "index.ts",
15
- "style.css",
16
- "fonts",
17
- "assets",
18
- "components",
19
- "composables"
17
+ "dist"
20
18
  ],
19
+ "scripts": {
20
+ "build": "vite build"
21
+ },
21
22
  "peerDependencies": {
23
+ "@tailwindcss/typography": "^0.5.19",
24
+ "tailwindcss": "^4.0.0",
22
25
  "vitepress": "^2.0.0-alpha.12",
23
26
  "vue": "^3.5.0"
24
27
  },
25
28
  "dependencies": {
26
29
  "@rive-app/canvas": "^2.31.6",
27
- "@tailwindcss/typography": "^0.5.19",
28
- "@tailwindcss/vite": "^4.1.13",
29
- "tailwindcss": "^4.1.13",
30
30
  "reka-ui": "^2.5.1"
31
31
  },
32
32
  "keywords": [
@@ -35,5 +35,11 @@
35
35
  "voidzero",
36
36
  "tailwind"
37
37
  ],
38
- "license": "MIT"
38
+ "license": "MIT",
39
+ "devDependencies": {
40
+ "@vitejs/plugin-vue": "^6.0.1",
41
+ "typescript": "^5.9.3",
42
+ "vite": "^7.1.12",
43
+ "vue-tsc": "^3.1.2"
44
+ }
39
45
  }
package/index.ts DELETED
@@ -1,44 +0,0 @@
1
- /**
2
- * @voidzero-dev/vitepress-theme
3
- *
4
- * Shared VitePress theme providing base styles, fonts, and design tokens
5
- * for VoidZero projects.
6
- *
7
- * Usage:
8
- * Extend this theme in your project's VitePress theme.
9
- *
10
- * @example
11
- * ```ts
12
- * // In your-project/.vitepress/theme/index.ts
13
- * import Theme from '@voidzero-dev/vitepress-theme'
14
- * import './overrides.css' // Your project-specific styles
15
- *
16
- * export default {
17
- * extends: Theme,
18
- * Layout: YourLayout
19
- * }
20
- * ```
21
- */
22
-
23
- import type { Theme } from 'vitepress'
24
- import Footer from './components/Footer.vue'
25
- import Header from './components/Header.vue'
26
- import Terminal from './components/Terminal.vue'
27
- import Eyebrow from './components/Eyebrow.vue'
28
- import RiveAnimation from './components/RiveAnimation.vue'
29
-
30
- // NOTE: We don't import style.css here because the consuming theme
31
- // needs to import Tailwind first, then our styles.
32
- // See the usage example in the JSDoc comment above.
33
-
34
- export default {
35
- Layout: () => null, // Base theme provides no layout, consuming themes must provide one
36
- enhanceApp({ app }) {
37
- // Register shared components globally - available in all consuming projects
38
- app.component('Footer', Footer)
39
- app.component('Header', Header)
40
- app.component('Terminal', Terminal)
41
- app.component('Eyebrow', Eyebrow)
42
- app.component('RiveAnimation', RiveAnimation)
43
- }
44
- } satisfies Theme
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes