@meonode/mui 0.0.1-alpha.7 → 0.0.1-alpha.8

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 +11 -10
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@meonode/mui",
3
3
  "description": "A lightweight wrapper around `@mui/material` components for use with `@meonode/ui` and the BaseNode runtime.",
4
- "version": "0.0.1-alpha.7",
4
+ "version": "0.0.1-alpha.8",
5
5
  "type": "module",
6
6
  "main": "./dist/main.js",
7
7
  "types": "./dist/main.d.ts",
@@ -20,25 +20,26 @@
20
20
  ],
21
21
  "scripts": {
22
22
  "lint": "eslint --fix",
23
- "build": "rm -rf ./dist && babel src --out-dir dist --extensions \".ts,.js\" && tsc && tsc-alias && copyfiles -u 1 \"src/**/*.json\" dist",
24
- "publish": "yarn version prerelease --deferred && yarn version apply && yarn npm publish"
23
+ "build": "rm -rf ./dist && babel src --out-dir dist --extensions \".ts,.js\" && tsc && tsc-alias",
24
+ "publish:pre": "yarn version prerelease && yarn npm publish",
25
+ "publish:patch": "yarn version patch && yarn npm publish",
26
+ "publish:minor": "yarn version minor && yarn npm publish",
27
+ "publish:major": "yarn version major && yarn npm publish"
25
28
  },
26
29
  "devDependencies": {
27
- "@babel/cli": "^7.0.0",
28
- "@babel/core": "^7.0.0",
30
+ "@babel/cli": "^7.27.2",
31
+ "@babel/core": "^7.27.1",
29
32
  "@babel/plugin-transform-json-modules": "^7.27.1",
30
- "@babel/preset-env": "^7.0.0",
33
+ "@babel/preset-env": "^7.27.2",
31
34
  "@babel/preset-typescript": "^7.27.1",
32
35
  "@eslint/js": "^9.27.0",
33
- "@meonode/ui": "^0.0.1-alpha.2",
36
+ "@meonode/ui": "^0.0.1-alpha.11",
34
37
  "@mui/material": "^7.1.0",
35
- "@types/copyfiles": "^2",
36
38
  "@types/react": "^19.1.4",
37
39
  "@typescript-eslint/eslint-plugin": "^8.32.1",
38
40
  "@typescript-eslint/parser": "^8.32.1",
39
41
  "babel-plugin-module-resolver": "^5.0.2",
40
42
  "babel-preset-minify": "^0.5.2",
41
- "copyfiles": "^2.4.1",
42
43
  "eslint": "^9.27.0",
43
44
  "eslint-plugin-jsdoc": "^50.6.17",
44
45
  "eslint-plugin-prettier": "^5.4.0",
@@ -66,5 +67,5 @@
66
67
  "access": "public"
67
68
  },
68
69
  "license": "MIT",
69
- "stableVersion": "0.0.1-alpha.6"
70
+ "stableVersion": "0.0.1-alpha.7"
70
71
  }