@hywax/cms 0.0.1

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.
@@ -0,0 +1,8 @@
1
+ import * as _nuxt_schema from '@nuxt/schema';
2
+
3
+ interface ModuleOptions {
4
+ }
5
+ declare const _default: _nuxt_schema.NuxtModule<ModuleOptions, ModuleOptions, false>;
6
+
7
+ export { _default as default };
8
+ export type { ModuleOptions };
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "@hywax/cms",
3
+ "version": "0.0.0",
4
+ "configKey": "cms",
5
+ "builder": {
6
+ "@nuxt/module-builder": "1.0.1",
7
+ "unbuild": "3.5.0"
8
+ }
9
+ }
@@ -0,0 +1,17 @@
1
+ import { defineNuxtModule } from '@nuxt/kit';
2
+
3
+ const name = "@hywax/cms";
4
+ const version = "0.0.0";
5
+
6
+ const module = defineNuxtModule({
7
+ meta: {
8
+ name,
9
+ version,
10
+ configKey: "cms"
11
+ },
12
+ defaults: {},
13
+ setup(_options, _nuxt) {
14
+ }
15
+ });
16
+
17
+ export { module as default };
@@ -0,0 +1,3 @@
1
+ {
2
+ "extends": "../../../.nuxt/tsconfig.server.json"
3
+ }
@@ -0,0 +1,3 @@
1
+ export { default } from './module.mjs'
2
+
3
+ export { type ModuleOptions } from './module.mjs'
package/package.json ADDED
@@ -0,0 +1,75 @@
1
+ {
2
+ "name": "@hywax/cms",
3
+ "type": "module",
4
+ "version": "0.0.1",
5
+ "description": "Hywax CMS. ⚠️ This package is intended for internal use only.",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/hywax/cms.git"
9
+ },
10
+ "exports": {
11
+ ".": {
12
+ "types": "./dist/types.d.mts",
13
+ "import": "./dist/module.mjs"
14
+ }
15
+ },
16
+ "main": "./dist/module.mjs",
17
+ "typesVersions": {
18
+ "*": {
19
+ ".": [
20
+ "./dist/types.d.mts"
21
+ ]
22
+ }
23
+ },
24
+ "files": [
25
+ "dist"
26
+ ],
27
+ "dependencies": {
28
+ "@iconify-json/lucide": "1.2.50",
29
+ "@nuxt/kit": "^3.17.5",
30
+ "@nuxt/ui-pro": "^3.1.3",
31
+ "@nuxtjs/mdc": "^0.17.0",
32
+ "@unpress/mdc-prosemirror": "0.1.12-beta.2",
33
+ "defu": "^6.1.4",
34
+ "prosekit": "^0.13.6"
35
+ },
36
+ "devDependencies": {
37
+ "@antfu/eslint-config": "^4.14.1",
38
+ "@commitlint/cli": "^19.8.1",
39
+ "@commitlint/config-conventional": "^19.8.1",
40
+ "@nuxt/devtools": "^2.5.0",
41
+ "@nuxt/module-builder": "^1.0.1",
42
+ "@nuxt/schema": "^3.17.5",
43
+ "@nuxt/test-utils": "^3.19.1",
44
+ "@types/node": "^22.14.0",
45
+ "changelogen": "^0.6.1",
46
+ "eslint": "^9.29.0",
47
+ "happy-dom": "^18.0.1",
48
+ "husky": "^9.1.7",
49
+ "lint-staged": "^16.1.2",
50
+ "nuxt": "^3.17.5",
51
+ "typescript": "^5.8.3",
52
+ "vitest": "^3.2.3",
53
+ "vue-tsc": "^2.2.10"
54
+ },
55
+ "lint-staged": {
56
+ "*.ts": "pnpm run lint"
57
+ },
58
+ "commitlint": {
59
+ "extends": [
60
+ "@commitlint/config-conventional"
61
+ ]
62
+ },
63
+ "scripts": {
64
+ "release": "pnpm run build && changelogen --release --push && pnpm publish --access public",
65
+ "build": "nuxt-module-build build",
66
+ "build:dev": "nuxi build playground",
67
+ "dev": "npm run dev:prepare && nuxi dev playground",
68
+ "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
69
+ "lint": "eslint .",
70
+ "lint:fix": "eslint --fix .",
71
+ "test": "vitest run",
72
+ "test:watch": "vitest watch",
73
+ "typecheck": "vue-tsc --noEmit"
74
+ }
75
+ }