Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@nuxt/schema

Package Overview
Dependencies
Maintainers
5
Versions
71
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nuxt/schema - npm Package Compare versions

Comparing version 3.0.0-rc.8 to 3.0.0-rc.9

13

package.json
{
"name": "@nuxt/schema",
"version": "3.0.0-rc.8",
"version": "3.0.0-rc.9",
"repository": "nuxt/framework",

@@ -20,13 +20,14 @@ "license": "MIT",

"unbuild": "latest",
"vite": "~3.0.6"
"untyped": "^0.4.7",
"vite": "~3.0.9"
},
"dependencies": {
"c12": "^0.2.9",
"c12": "^0.2.10",
"create-require": "^1.1.1",
"defu": "^6.0.0",
"defu": "^6.1.0",
"jiti": "^1.14.0",
"pathe": "^0.3.4",
"pathe": "^0.3.5",
"postcss-import-resolver": "^2.0.0",
"scule": "^0.3.2",
"std-env": "^3.1.1",
"std-env": "^3.2.1",
"ufo": "^0.8.5",

@@ -33,0 +34,0 @@ "unimport": "^0.6.7"

@@ -52,3 +52,3 @@ {

"/<rootDir>/node_modules",
"/home/pooya/Code/framework/packages/schema/node_modules"
"/Users/pooya/Code/framework/packages/schema/node_modules"
]

@@ -67,3 +67,4 @@ }

},
"autoImports": {
"autoImports": null,
"imports": {
"global": false,

@@ -93,3 +94,12 @@ "dirs": []

"viewport": "width=device-width, initial-scale=1"
}
},
"layoutTransition": {
"name": "layout",
"mode": "out-in"
},
"pageTransition": {
"name": "page",
"mode": "out-in"
},
"keepalive": false
},

@@ -229,2 +239,3 @@ "meta": {

"extends": null,
"theme": null,
"test": false,

@@ -246,3 +257,3 @@ "debug": false,

"/<rootDir>/node_modules",
"/home/pooya/Code/framework/packages/schema/node_modules"
"/Users/pooya/Code/framework/packages/schema/node_modules"
],

@@ -305,2 +316,3 @@ "extensions": [

},
"appConfig": {},
"_majorVersion": 2,

@@ -623,6 +635,6 @@ "_legacyGenerate": false,

"asyncEntry": false,
"viteNode": false,
"reactivityTransform": false,
"externalVue": false,
"externalVue": true,
"treeshakeClientOnly": false,
"viteNode": true,
"viteServerDynamicImports": true

@@ -682,5 +694,5 @@ },

"versionBase": "",
"version": "1660311742"
"version": "1662201703"
}
}
}

@@ -6,3 +6,8 @@

# `autoImports`
- **Type**: `any`
- **Default**: `null`
# `imports`
## `global`

@@ -91,2 +96,36 @@ - **Type**: `boolean`

## `layoutTransition`
### `name`
- **Type**: `string`
- **Default**: `"layout"`
### `mode`
- **Type**: `string`
- **Default**: `"out-in"`
## `pageTransition`
### `name`
- **Type**: `string`
- **Default**: `"page"`
### `mode`
- **Type**: `string`
- **Default**: `"out-in"`
## `keepalive`
- **Type**: `SrcTypesConfigNuxtAppConfig['keepalive']`
- **Default**: `false`
> Default values for KeepAlive configuration between pages.
This can be overridden with `definePageMeta` on an individual page. Only JSON-serializable values are allowed.
# `appTemplatePath`

@@ -393,3 +432,3 @@ - **Type**: `string`

> Extend nested configurations from multiple local or remote sources.
> Extend project from multiple local or remote sources.

@@ -401,2 +440,13 @@

# `theme`
- **Type**: `string`
- **Default**: `null`
> Extend project from a local or remote source.
Value should be a string pointing to source directory or config path relative to current config.
You can use `github:`, `gitlab:`, `bitbucket:` or `https://` to extend from a remote git repository.
# `rootDir`

@@ -624,3 +674,3 @@ - **Type**: `string`

- **Type**: `array`
- **Default**: `["/<rootDir>/node_modules","/home/pooya/Code/framework/packages/schema/node_modules"]`
- **Default**: `["/<rootDir>/node_modules","/Users/pooya/Code/framework/packages/schema/node_modules"]`

@@ -790,2 +840,12 @@ > Used to set the modules directories for path resolving (for example, webpack's `resolveLoading`, `nodeExternals` and `postcss`).

# `appConfig`
- **Type**: `SrcTypesConfigAppConfig`
- **Default**: `{}`
> Additional app configuration
For programmatic usage and type support, you can directly provide app config with this option. It will be merged with `app.config` file as default value.
# `_majorVersion`

@@ -1005,3 +1065,3 @@ - **Type**: `number`

- **Type**: `array`
- **Default**: `["/<rootDir>/.nuxt","/<rootDir>","/<rootDir>","/<rootDir>/node_modules","/home/pooya/Code/framework/packages/schema/node_modules"]`
- **Default**: `["/<rootDir>/.nuxt","/<rootDir>","/<rootDir>","/<rootDir>/node_modules","/Users/pooya/Code/framework/packages/schema/node_modules"]`

@@ -1426,9 +1486,2 @@

## `viteNode`
- **Type**: `boolean`
- **Default**: `false`
> Use `vite-node` for on-demand server chunk loading.
## `reactivityTransform`

@@ -1438,3 +1491,3 @@ - **Type**: `boolean`

> Enable Vue's reactivity transform.
> Enable Vue's reactivity transform

@@ -1444,3 +1497,3 @@

- **Type**: `boolean`
- **Default**: `false`
- **Default**: `true`

@@ -1457,2 +1510,9 @@ > Externalize `vue`, `@vue/*` and `vue-router` when building.

## `viteNode`
- **Type**: `boolean`
- **Default**: `true`
> Use vite-node for on-demand server chunk loading
## `viteServerDynamicImports`

@@ -2610,3 +2670,3 @@ - **Type**: `boolean`

> The full path to the versioned directory where static assets for the current buidl are located.
> The full path to the versioned directory where static assets for the current build are located.

@@ -2616,4 +2676,4 @@

- **Type**: `string`
- **Default**: `"1660311742"`
- **Default**: `"1662201703"`
> A unique string to uniquely identify payload versions (defaults to the current timestamp).

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc