@skaldapp/configs 1.2.88 → 1.2.90

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/package.json +4 -4
  2. package/tsconfig.json +1 -1
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://www.schemastore.org/package",
3
3
  "name": "@skaldapp/configs",
4
- "version": "1.2.88",
4
+ "version": "1.2.90",
5
5
  "description": "A comprehensive collection of shared configuration files for Vue.js projects with TypeScript, ESLint, Prettier, UnoCSS, and Vite, featuring Pug support",
6
6
  "keywords": [
7
7
  "vue",
@@ -67,6 +67,7 @@
67
67
  "@eslint/json": "^1.2.0",
68
68
  "@prettier/plugin-pug": "^3.4.2",
69
69
  "@tsconfig/strictest": "^2.0.8",
70
+ "@types/node": "^25.5.2",
70
71
  "@unocss/eslint-config": "^66.6.7",
71
72
  "@unocss/extractor-arbitrary-variants": "^66.6.7",
72
73
  "@unocss/extractor-pug": "^66.6.7",
@@ -105,14 +106,13 @@
105
106
  "prettier-plugin-tailwindcss": "^0.7.2",
106
107
  "pug": "^3.0.4",
107
108
  "tsc-alias": "^1.8.16",
108
- "typescript": "^5.9.3",
109
+ "typescript": "^6.0.2",
109
110
  "vite": "^8.0.5",
110
111
  "vite-plugin-vue-devtools": "^8.1.1",
111
112
  "vue-eslint-parser-template-tokenizer-pug": "^1.0.0",
112
113
  "vue-tsc": "^3.2.6"
113
114
  },
114
115
  "devDependencies": {
115
- "@eslint/config-helpers": "^0.5.4",
116
- "@types/node": "^25.5.2"
116
+ "@eslint/config-helpers": "^0.5.4"
117
117
  }
118
118
  }
package/tsconfig.json CHANGED
@@ -14,7 +14,7 @@
14
14
  "outDir": "${configDir}/dist",
15
15
  "paths": { "@/*": ["${configDir}/src/*"] },
16
16
  "removeComments": true,
17
- "types": ["vite/client"]
17
+ "types": ["node", "vite/client"]
18
18
  },
19
19
  "tsc-alias": { "resolveFullPaths": true },
20
20
  "vueCompilerOptions": { "plugins": ["@vue/language-plugin-pug"] }