@aiquants/menu-bar 1.11.0 → 1.11.1
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.
- package/package.json +16 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiquants/menu-bar",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A React menu bar component with authentication support and theming",
|
|
6
6
|
"keywords": [
|
|
@@ -34,21 +34,6 @@
|
|
|
34
34
|
"README.md",
|
|
35
35
|
"LICENSE"
|
|
36
36
|
],
|
|
37
|
-
"scripts": {
|
|
38
|
-
"build": "vite build && pnpm build:css",
|
|
39
|
-
"build:css": "tailwindcss -i src/styles/tailwind.css -o dist/styles/menu-bar.css --minify",
|
|
40
|
-
"dev": "vite build --watch",
|
|
41
|
-
"watch": "vite build --watch",
|
|
42
|
-
"watch:css": "tailwindcss -i src/styles/tailwind.css -o dist/styles/menu-bar.css --minify --watch",
|
|
43
|
-
"typecheck": "tsc --noEmit",
|
|
44
|
-
"license-check": "pnpm dlx license-checker --production --onlyAllow \"MIT;Apache-2.0;BSD-2-Clause;BSD-3-Clause;ISC;Unlicense\"",
|
|
45
|
-
"license-check:json": "pnpm dlx license-checker --production --onlyAllow \"MIT;Apache-2.0;BSD-2-Clause;BSD-3-Clause;ISC;Unlicense\" --json",
|
|
46
|
-
"clean": "rimraf dist",
|
|
47
|
-
"prepublishOnly": "npm run clean && npm run typecheck && npm run test --if-present && npm run build",
|
|
48
|
-
"publish:patch": "npm version patch && npm publish",
|
|
49
|
-
"publish:minor": "npm version minor && npm publish",
|
|
50
|
-
"publish:major": "npm version major && npm publish"
|
|
51
|
-
},
|
|
52
37
|
"engines": {
|
|
53
38
|
"node": ">=18.0.0",
|
|
54
39
|
"npm": ">=8.0.0"
|
|
@@ -78,5 +63,19 @@
|
|
|
78
63
|
},
|
|
79
64
|
"publishConfig": {
|
|
80
65
|
"access": "public"
|
|
66
|
+
},
|
|
67
|
+
"scripts": {
|
|
68
|
+
"build": "vite build && pnpm build:css",
|
|
69
|
+
"build:css": "tailwindcss -i src/styles/tailwind.css -o dist/styles/menu-bar.css --minify",
|
|
70
|
+
"dev": "vite build --watch",
|
|
71
|
+
"watch": "vite build --watch",
|
|
72
|
+
"watch:css": "tailwindcss -i src/styles/tailwind.css -o dist/styles/menu-bar.css --minify --watch",
|
|
73
|
+
"typecheck": "tsc --noEmit",
|
|
74
|
+
"license-check": "pnpm dlx license-checker --production --onlyAllow \"MIT;Apache-2.0;BSD-2-Clause;BSD-3-Clause;ISC;Unlicense\"",
|
|
75
|
+
"license-check:json": "pnpm dlx license-checker --production --onlyAllow \"MIT;Apache-2.0;BSD-2-Clause;BSD-3-Clause;ISC;Unlicense\" --json",
|
|
76
|
+
"clean": "rimraf dist",
|
|
77
|
+
"publish:patch": "npm version patch && pnpm publish --no-git-checks",
|
|
78
|
+
"publish:minor": "npm version minor && pnpm publish --no-git-checks",
|
|
79
|
+
"publish:major": "npm version major && pnpm publish --no-git-checks"
|
|
81
80
|
}
|
|
82
|
-
}
|
|
81
|
+
}
|