New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

create-svelte

Package Overview
Dependencies
Maintainers
2
Versions
279
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-svelte - npm Package Compare versions

Comparing version 6.1.0 to 6.1.1

30

dist/shared.json

@@ -26,2 +26,10 @@ {

{
"name": ".eslintignore",
"include": [
"eslint"
],
"exclude": [],
"contents": ".DS_Store\nnode_modules\n/build\n/.svelte-kit\n/package\n.env\n.env.*\n!.env.example\n\n# Ignore files for PNPM, NPM and YARN\npnpm-lock.yaml\npackage-lock.json\nyarn.lock\n"
},
{
"name": "package.json",

@@ -32,3 +40,3 @@ "include": [

"exclude": [],
"contents": "{\n\t\"devDependencies\": {\n\t\t\"@types/eslint\": \"^8.56.7\",\n\t\t\"eslint\": \"^9.0.0\",\n\t\t\"eslint-plugin-svelte\": \"^2.36.0\",\n\t\t\"globals\": \"^15.0.0\"\n\t}\n}\n"
"contents": "{\n\t\"devDependencies\": {\n\t\t\"@types/eslint\": \"^8.56.0\",\n\t\t\"eslint\": \"^8.56.0\",\n\t\t\"eslint-plugin-svelte\": \"^2.35.1\"\n\t}\n}\n"
},

@@ -183,6 +191,6 @@ {

"exclude": [],
"contents": "{\n\t\"devDependencies\": {\n\t\t\"eslint-plugin-svelte\": \"^2.36.0\"\n\t}\n}\n"
"contents": "{\n\t\"devDependencies\": {\n\t\t\"eslint-plugin-svelte\": \"^2.36.0-next.4\"\n\t}\n}\n"
},
{
"name": "eslint.config.js",
"name": ".eslintrc.cjs",
"include": [

@@ -193,3 +201,3 @@ "eslint",

"exclude": [],
"contents": "import js from '@eslint/js';\nimport ts from 'typescript-eslint';\nimport svelte from 'eslint-plugin-svelte';\nimport globals from 'globals';\n\n/** @type {import('eslint').Linter.FlatConfig[]} */\nexport default [\n\tjs.configs.recommended,\n\t...ts.configs.recommended,\n\t...svelte.configs['flat/recommended'],\n\t{\n\t\tlanguageOptions: {\n\t\t\tglobals: {\n\t\t\t\t...globals.browser,\n\t\t\t\t...globals.node\n\t\t\t}\n\t\t}\n\t},\n\t{\n\t\tfiles: ['**/*.svelte'],\n\t\tlanguageOptions: {\n\t\t\tparserOptions: {\n\t\t\t\tparser: ts.parser\n\t\t\t}\n\t\t}\n\t},\n\t{\n\t\tignores: ['build/', '.svelte-kit/', 'package/']\n\t}\n];\n"
"contents": "/** @type { import(\"eslint\").Linter.Config } */\nmodule.exports = {\n\troot: true,\n\textends: [\n\t\t'eslint:recommended',\n\t\t'plugin:@typescript-eslint/recommended',\n\t\t'plugin:svelte/recommended'\n\t],\n\tparser: '@typescript-eslint/parser',\n\tplugins: ['@typescript-eslint'],\n\tparserOptions: {\n\t\tsourceType: 'module',\n\t\tecmaVersion: 2020,\n\t\textraFileExtensions: ['.svelte']\n\t},\n\tenv: {\n\t\tbrowser: true,\n\t\tes2017: true,\n\t\tnode: true\n\t},\n\toverrides: [\n\t\t{\n\t\t\tfiles: ['*.svelte'],\n\t\t\tparser: 'svelte-eslint-parser',\n\t\t\tparserOptions: {\n\t\t\t\tparser: '@typescript-eslint/parser'\n\t\t\t}\n\t\t}\n\t]\n};\n"
},

@@ -203,3 +211,3 @@ {

"exclude": [],
"contents": "{\n\t\"devDependencies\": {\n\t\t\"typescript-eslint\": \"^7.5.0\"\n\t}\n}\n"
"contents": "{\n\t\"devDependencies\": {\n\t\t\"@typescript-eslint/eslint-plugin\": \"^7.0.0\",\n\t\t\"@typescript-eslint/parser\": \"^7.0.0\"\n\t}\n}\n"
},

@@ -217,3 +225,3 @@ {

{
"name": "eslint.config.js",
"name": ".eslintrc.cjs",
"include": [

@@ -225,3 +233,3 @@ "eslint"

],
"contents": "import js from '@eslint/js';\nimport svelte from 'eslint-plugin-svelte';\nimport globals from 'globals';\n\n/** @type {import('eslint').Linter.FlatConfig[]} */\nexport default [\n\tjs.configs.recommended,\n\t...svelte.configs['flat/recommended'],\n\t{\n\t\tlanguageOptions: {\n\t\t\tglobals: {\n\t\t\t\t...globals.browser,\n\t\t\t\t...globals.node\n\t\t\t}\n\t\t}\n\t},\n\t{\n\t\tignores: ['build/', '.svelte-kit/', 'package/']\n\t}\n];\n"
"contents": "/** @type { import(\"eslint\").Linter.Config } */\nmodule.exports = {\n\troot: true,\n\textends: ['eslint:recommended', 'plugin:svelte/recommended'],\n\tparserOptions: {\n\t\tsourceType: 'module',\n\t\tecmaVersion: 2020,\n\t\textraFileExtensions: ['.svelte']\n\t},\n\tenv: {\n\t\tbrowser: true,\n\t\tes2017: true,\n\t\tnode: true\n\t}\n};\n"
},

@@ -342,3 +350,3 @@ {

{
"name": "eslint.config.js",
"name": ".eslintrc.cjs",
"include": [

@@ -350,6 +358,6 @@ "eslint",

"exclude": [],
"contents": "import js from '@eslint/js';\nimport ts from 'typescript-eslint';\nimport svelte from 'eslint-plugin-svelte';\nimport prettier from 'eslint-config-prettier';\nimport globals from 'globals';\n\n/** @type {import('eslint').Linter.FlatConfig[]} */\nexport default [\n\tjs.configs.recommended,\n\t...ts.configs.recommended,\n\t...svelte.configs['flat/recommended'],\n\tprettier,\n\t...svelte.configs['flat/prettier'],\n\t{\n\t\tlanguageOptions: {\n\t\t\tglobals: {\n\t\t\t\t...globals.browser,\n\t\t\t\t...globals.node\n\t\t\t}\n\t\t}\n\t},\n\t{\n\t\tfiles: ['**/*.svelte'],\n\t\tlanguageOptions: {\n\t\t\tparserOptions: {\n\t\t\t\tparser: ts.parser\n\t\t\t}\n\t\t}\n\t},\n\t{\n\t\tignores: ['build/', '.svelte-kit/', 'package/']\n\t}\n];\n"
"contents": "/** @type { import(\"eslint\").Linter.Config } */\nmodule.exports = {\n\troot: true,\n\textends: [\n\t\t'eslint:recommended',\n\t\t'plugin:@typescript-eslint/recommended',\n\t\t'plugin:svelte/recommended',\n\t\t'prettier'\n\t],\n\tparser: '@typescript-eslint/parser',\n\tplugins: ['@typescript-eslint'],\n\tparserOptions: {\n\t\tsourceType: 'module',\n\t\tecmaVersion: 2020,\n\t\textraFileExtensions: ['.svelte']\n\t},\n\tenv: {\n\t\tbrowser: true,\n\t\tes2017: true,\n\t\tnode: true\n\t},\n\toverrides: [\n\t\t{\n\t\t\tfiles: ['*.svelte'],\n\t\t\tparser: 'svelte-eslint-parser',\n\t\t\tparserOptions: {\n\t\t\t\tparser: '@typescript-eslint/parser'\n\t\t\t}\n\t\t}\n\t]\n};\n"
},
{
"name": "eslint.config.js",
"name": ".eslintrc.cjs",
"include": [

@@ -362,3 +370,3 @@ "eslint",

],
"contents": "import js from '@eslint/js';\nimport svelte from 'eslint-plugin-svelte';\nimport prettier from 'eslint-config-prettier';\nimport globals from 'globals';\n\n/** @type {import('eslint').Linter.FlatConfig[]} */\nexport default [\n\tjs.configs.recommended,\n\t...svelte.configs['flat/recommended'],\n\tprettier,\n\t...svelte.configs['flat/prettier'],\n\t{\n\t\tlanguageOptions: {\n\t\t\tglobals: {\n\t\t\t\t...globals.browser,\n\t\t\t\t...globals.node\n\t\t\t}\n\t\t}\n\t},\n\t{\n\t\tignores: ['build/', '.svelte-kit/', 'package/']\n\t}\n];\n"
"contents": "/** @type { import(\"eslint\").Linter.Config } */\nmodule.exports = {\n\troot: true,\n\textends: ['eslint:recommended', 'plugin:svelte/recommended', 'prettier'],\n\tparserOptions: {\n\t\tsourceType: 'module',\n\t\tecmaVersion: 2020,\n\t\textraFileExtensions: ['.svelte']\n\t},\n\tenv: {\n\t\tbrowser: true,\n\t\tes2017: true,\n\t\tnode: true\n\t}\n};\n"
},

@@ -365,0 +373,0 @@ {

{
"name": "create-svelte",
"version": "6.1.0",
"version": "6.1.1",
"description": "A CLI for creating new SvelteKit projects",

@@ -28,3 +28,3 @@ "repository": {

"typescript": "^5.3.3",
"vitest": "^1.2.0"
"vitest": "^1.5.0"
},

@@ -31,0 +31,0 @@ "files": [

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