@maz-ui/themes 4.1.7 → 4.2.1-alpha.9

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 (1) hide show
  1. package/package.json +16 -17
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@maz-ui/themes",
3
3
  "type": "module",
4
- "version": "4.1.7",
4
+ "version": "4.2.1-alpha.9",
5
5
  "description": "Theme system for Maz-UI with TypeScript support and CSS variables",
6
6
  "author": "Louis Mazel <me@loicmazuel.com>",
7
7
  "license": "MIT",
@@ -74,24 +74,11 @@
74
74
  "engines": {
75
75
  "node": ">=18.0.0"
76
76
  },
77
- "scripts": {
78
- "build": "vite build",
79
- "build:watch": "vite build --watch --mode development",
80
- "typecheck": "vue-tsc --noEmit",
81
- "lint": "cross-env NODE_ENV=production eslint .",
82
- "lint:fix": "pnpm lint --fix",
83
- "test": "vitest",
84
- "test:unit": "vitest run",
85
- "test:unit:watch": "vitest watch",
86
- "test:unit:coverage": "vitest run --coverage",
87
- "test:unit:coverage:watch": "vitest watch --coverage",
88
- "test:unit:coverage:master": "vitest run --coverage --changed master"
89
- },
90
77
  "peerDependencies": {
91
78
  "vue": "^3.5.0"
92
79
  },
93
80
  "dependencies": {
94
- "@maz-ui/utils": "4.1.7"
81
+ "@maz-ui/utils": "4.2.1-alpha.9"
95
82
  },
96
83
  "devDependencies": {
97
84
  "glob": "^11.0.3",
@@ -101,5 +88,17 @@
101
88
  "lint-staged": {
102
89
  "*.{js,ts,vue,mjs,mts,cjs,md,yml,json}": "cross-env NODE_ENV=production eslint --fix"
103
90
  },
104
- "gitHead": "e40beabe5a0c9bcc7ccad56258058e12e9aa5336"
105
- }
91
+ "scripts": {
92
+ "build": "vite build",
93
+ "build:watch": "vite build --watch --mode development",
94
+ "typecheck": "vue-tsc --noEmit",
95
+ "lint": "cross-env NODE_ENV=production eslint .",
96
+ "lint:fix": "pnpm lint --fix",
97
+ "test": "vitest",
98
+ "test:unit": "vitest run",
99
+ "test:unit:watch": "vitest watch",
100
+ "test:unit:coverage": "vitest run --coverage",
101
+ "test:unit:coverage:watch": "vitest watch --coverage",
102
+ "test:unit:coverage:master": "vitest run --coverage --changed master"
103
+ }
104
+ }