@pinegrow/nuxt-module 3.0.68 → 3.0.70
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.d.mts +1 -1
- package/dist/module.d.ts +1 -1
- package/dist/module.json +2 -2
- package/dist/module.mjs +1 -1
- package/package.json +65 -65
package/dist/module.d.mts
CHANGED
|
@@ -10,6 +10,6 @@ interface PinegrowNuxtModuleOptions {
|
|
|
10
10
|
[key in string]?: any;
|
|
11
11
|
} & LiveDesignerOptions;
|
|
12
12
|
}
|
|
13
|
-
declare const _default: _nuxt_schema.NuxtModule<PinegrowNuxtModuleOptions>;
|
|
13
|
+
declare const _default: _nuxt_schema.NuxtModule<PinegrowNuxtModuleOptions, PinegrowNuxtModuleOptions, false>;
|
|
14
14
|
|
|
15
15
|
export { type PinegrowNuxtModuleOptions, _default as default };
|
package/dist/module.d.ts
CHANGED
|
@@ -10,6 +10,6 @@ interface PinegrowNuxtModuleOptions {
|
|
|
10
10
|
[key in string]?: any;
|
|
11
11
|
} & LiveDesignerOptions;
|
|
12
12
|
}
|
|
13
|
-
declare const _default: _nuxt_schema.NuxtModule<PinegrowNuxtModuleOptions>;
|
|
13
|
+
declare const _default: _nuxt_schema.NuxtModule<PinegrowNuxtModuleOptions, PinegrowNuxtModuleOptions, false>;
|
|
14
14
|
|
|
15
15
|
export { type PinegrowNuxtModuleOptions, _default as default };
|
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,66 +1,66 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
}
|
|
2
|
+
"name": "@pinegrow/nuxt-module",
|
|
3
|
+
"version": "3.0.70",
|
|
4
|
+
"description": "Pinegrow Nuxt Module",
|
|
5
|
+
"author": "Pinegrow (http://pinegrow.com/)",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"main": "./dist/module.cjs",
|
|
12
|
+
"module": "./dist/module.cjs",
|
|
13
|
+
"exports": {
|
|
14
|
+
".": {
|
|
15
|
+
"types": "./dist/types.d.ts",
|
|
16
|
+
"import": "./dist/module.mjs",
|
|
17
|
+
"require": "./dist/module.cjs"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"types": "./dist/types.d.ts",
|
|
21
|
+
"keywords": [
|
|
22
|
+
"pinegrow",
|
|
23
|
+
"vue designer",
|
|
24
|
+
"vuedesigner",
|
|
25
|
+
"vue-designer",
|
|
26
|
+
"nuxt-module",
|
|
27
|
+
"@pinegrow/nuxt-module"
|
|
28
|
+
],
|
|
29
|
+
"scripts": {
|
|
30
|
+
"build": "npm run dev:prepare && npm run build:module",
|
|
31
|
+
"build:module": "nuxt-module-build",
|
|
32
|
+
"dev": "nuxi dev playground",
|
|
33
|
+
"dev:build": "nuxi build playground",
|
|
34
|
+
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
|
|
35
|
+
"publish-beta": "npm run increment-beta-version && npm publish --tag beta",
|
|
36
|
+
"increment-beta-version": "npm version prerelease --preid=beta",
|
|
37
|
+
"publish-patch": "npm publish",
|
|
38
|
+
"increment-version": "npm version patch",
|
|
39
|
+
"lint": "npm run lint:fix && npm run format",
|
|
40
|
+
"lint:fix": "eslint --ext .js,.cjs,.ts,.vue --ignore-path .gitignore --fix ./src",
|
|
41
|
+
"format": "prettier --write ."
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"@nuxt/kit": "latest",
|
|
45
|
+
"@pinegrow/vite-plugin": "3.0.70"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@nuxt/module-builder": "latest",
|
|
49
|
+
"@nuxt/eslint-config": "^0.1.1",
|
|
50
|
+
"nuxt": "^3.7.3",
|
|
51
|
+
"eslint": "^8.35.0",
|
|
52
|
+
"eslint-config-prettier": "^8.7.0",
|
|
53
|
+
"prettier": "^2.8.4"
|
|
54
|
+
},
|
|
55
|
+
"peerDependencies": {
|
|
56
|
+
"nuxt": ">=3"
|
|
57
|
+
},
|
|
58
|
+
"pnpm": {
|
|
59
|
+
"overrides": {
|
|
60
|
+
"nuxi": "3.8.4"
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
"overrides": {
|
|
64
|
+
"nuxi": "3.8.4"
|
|
65
|
+
}
|
|
66
|
+
}
|