@model-w/preset-nuxt3 0.1.5 → 0.1.7

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 (2) hide show
  1. package/README.md +8 -0
  2. package/package.json +57 -47
package/README.md CHANGED
@@ -0,0 +1,8 @@
1
+ ### Model-W Nuxt3 Preset
2
+
3
+ The main goal of this project is to set the base dependencies for Nuxt3/Vue3 to start a scratch project made
4
+ with the following the documentation available in the [Model-W](https://github.com/ModelW/project-maker) url.
5
+
6
+ ### Documentation
7
+
8
+ [✨ **Documentation is there** ✨](http://modelw-nuxt3-preset.rtfd.io/)
package/package.json CHANGED
@@ -1,49 +1,59 @@
1
1
  {
2
- "name": "@model-w/preset-nuxt3",
3
- "version": "0.1.5",
4
- "repository": {
5
- "type": "git",
6
- "url": "git+https://github.com/ModelW/preset-nuxt3.git"
7
- },
8
- "bugs": {
9
- "url": "https://github.com/ModelW/preset-nuxt3/issues"
10
- },
11
- "description": "Preset of Nuxt3 for ModelW",
12
- "main": "nuxt.config.ts",
13
- "scripts": {
14
- "test": "echo \"Error: no test specified\" && exit 1"
15
- },
16
- "engines": {
17
- "node": ">=16.0.0"
18
- },
19
- "peerDependencies": {
20
- "vue": "~3.2.47",
21
- "nuxt": "~3.2.3"
22
- },
23
- "dependencies": {
24
- "@model-w/axios": "~0.3.0",
25
- "@model-w/proxy": "~0.1.4",
26
- "@model-w/sentry": "~0.1.1",
27
- "@vuelidate/core": "~2.0.2",
28
- "@vuelidate/validators": "~2.0.2",
29
- "defu": "~6.1.2",
30
- "jsdom": "~21.1.1",
31
- "nuxt-runtime-compiler": "~1.2.2",
32
- "vite-svg-loader": "~4.0.0",
33
- "vue3-toastify": "~0.1.6",
34
- "sass": "~1.62.0",
35
- "sass-loader": "~13.2.2"
36
- },
37
- "keywords": [
38
- "Nuxt3",
39
- "modelw",
40
- "model-w",
41
- "Nuxt3-preset"
42
- ],
43
- "author": "Rémy Sanchez (@xowap)",
44
- "license": "WTFPL",
45
- "contributors": [
46
- "Laurent Treguier",
47
- "Ivan Lorenzo"
48
- ]
2
+ "name": "@model-w/preset-nuxt3",
3
+ "version": "0.1.7",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "git+https://github.com/ModelW/preset-nuxt3.git"
7
+ },
8
+ "bugs": {
9
+ "url": "https://github.com/ModelW/preset-nuxt3/issues"
10
+ },
11
+ "description": "Preset of Nuxt3 for ModelW",
12
+ "main": "nuxt.config.ts",
13
+ "scripts": {
14
+ "test": "echo \"Error: no test specified\" && exit 1"
15
+ },
16
+ "engines": {
17
+ "node": ">=16.0.0"
18
+ },
19
+ "peerDependencies": {
20
+ "vue": "~3.2.47",
21
+ "nuxt": "~3.4.x"
22
+ },
23
+ "dependencies": {
24
+ "@model-w/axios": "~0.3.0",
25
+ "@model-w/proxy": "~0.1.4",
26
+ "@model-w/sentry": "~0.1.1",
27
+ "@vuelidate/core": "~2.0.2",
28
+ "@vuelidate/validators": "~2.0.2",
29
+ "defu": "~6.1.2",
30
+ "jsdom": "~21.1.1",
31
+ "nuxt-runtime-compiler": "~1.2.2",
32
+ "vite-svg-loader": "~4.0.0",
33
+ "vue3-toastify": "~0.1.6",
34
+ "sass": "~1.62.0",
35
+ "sass-loader": "~13.2.2"
36
+ },
37
+ "devDependencies": {
38
+ "@babel/eslint-parser": "~7.21.3",
39
+ "@nuxtjs/eslint-config": "~6.0.1",
40
+ "@nuxtjs/eslint-module": "~3.1.0",
41
+ "eslint": "~7.32.0",
42
+ "eslint-config-prettier": "~8.8.0",
43
+ "eslint-plugin-nuxt": "~2.0.0",
44
+ "eslint-plugin-vue": "~7.20.0",
45
+ "prettier": "~2.8.7"
46
+ },
47
+ "keywords": [
48
+ "Nuxt3",
49
+ "modelw",
50
+ "model-w",
51
+ "Nuxt3-preset"
52
+ ],
53
+ "author": "Rémy Sanchez (@xowap)",
54
+ "license": "WTFPL",
55
+ "contributors": [
56
+ "Laurent Treguier",
57
+ "Ivan Lorenzo"
58
+ ]
49
59
  }