@stonecrop/nuxt 0.29.0 → 0.31.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/dist/module.json +1 -1
- package/package.json +19 -15
package/dist/module.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stonecrop/nuxt",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.31.0",
|
|
4
4
|
"description": "Nuxt module for Stonecrop",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -45,21 +45,22 @@
|
|
|
45
45
|
"pathe": "^2.0.3",
|
|
46
46
|
"pinia": "^3.0.4",
|
|
47
47
|
"prompts": "^2.4.2",
|
|
48
|
-
"@stonecrop/
|
|
49
|
-
"@stonecrop/
|
|
50
|
-
"@stonecrop/code-editor": "0.
|
|
51
|
-
"@stonecrop/
|
|
52
|
-
"@stonecrop/
|
|
53
|
-
"@stonecrop/graphql-client": "0.
|
|
54
|
-
"@stonecrop/
|
|
55
|
-
"@stonecrop/
|
|
56
|
-
"@stonecrop/
|
|
57
|
-
"@stonecrop/schema": "0.
|
|
58
|
-
"@stonecrop/
|
|
59
|
-
"@stonecrop/
|
|
48
|
+
"@stonecrop/atable": "0.31.0",
|
|
49
|
+
"@stonecrop/aform": "0.31.0",
|
|
50
|
+
"@stonecrop/code-editor": "0.31.0",
|
|
51
|
+
"@stonecrop/casl-middleware": "0.31.0",
|
|
52
|
+
"@stonecrop/desktop": "0.31.0",
|
|
53
|
+
"@stonecrop/graphql-client": "0.31.0",
|
|
54
|
+
"@stonecrop/node-editor": "0.31.0",
|
|
55
|
+
"@stonecrop/nuxt-grafserv": "0.31.0",
|
|
56
|
+
"@stonecrop/graphql-middleware": "0.31.0",
|
|
57
|
+
"@stonecrop/schema": "0.31.0",
|
|
58
|
+
"@stonecrop/themes": "0.31.0",
|
|
59
|
+
"@stonecrop/stonecrop": "0.31.0"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"@eslint/js": "^10.0.1",
|
|
63
|
+
"@nuxt/content": "^3.0.0",
|
|
63
64
|
"@nuxt/devtools": "^3.2.4",
|
|
64
65
|
"@nuxt/eslint": "1.16.0",
|
|
65
66
|
"@nuxt/eslint-config": "^1.16.0",
|
|
@@ -95,15 +96,18 @@
|
|
|
95
96
|
"build": "rushx dev:prepare && nuxt-module-build build",
|
|
96
97
|
"dev": "rushx dev:prepare && nuxi dev playground --host",
|
|
97
98
|
"dev:build": "nuxi build playground",
|
|
99
|
+
"dev:documentation": "rushx dev:prepare:documentation && nuxi dev documentation --host",
|
|
98
100
|
"dev:full": "rushx dev:prepare:full && nuxi dev fullstack --host",
|
|
99
|
-
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare &&
|
|
101
|
+
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && sh scripts/nuxt-apps.sh prepare",
|
|
102
|
+
"dev:prepare:documentation": "nuxi prepare documentation",
|
|
100
103
|
"dev:prepare:full": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare fullstack",
|
|
101
104
|
"docs": "echo 'Nuxt modules use custom build system - skipping API docs generation'",
|
|
105
|
+
"generate:documentation": "nuxi generate documentation",
|
|
102
106
|
"lint": "eslint .",
|
|
103
107
|
"prepublish": "rushx dev:prepare && nuxt-module-build build",
|
|
104
108
|
"test": "vitest run",
|
|
105
109
|
"test:coverage": "vitest run --coverage.enabled --coverage.provider=istanbul",
|
|
106
|
-
"test:types": "vue-tsc --noEmit -p tsconfig.runtime.json && vue-tsc --noEmit -p tsconfig.templates-app.json && vue-tsc --noEmit -p tsconfig.templates-server.json &&
|
|
110
|
+
"test:types": "vue-tsc --noEmit -p tsconfig.runtime.json && vue-tsc --noEmit -p tsconfig.templates-app.json && vue-tsc --noEmit -p tsconfig.templates-server.json && sh scripts/nuxt-apps.sh typecheck",
|
|
107
111
|
"test:ui": "vitest --ui",
|
|
108
112
|
"test:watch": "vitest watch"
|
|
109
113
|
}
|