aura-glass 3.4.5 → 3.4.7
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/README.md +16 -1
- package/package.json +9 -2
package/README.md
CHANGED
|
@@ -152,9 +152,24 @@ npx aura-glass doctor --json
|
|
|
152
152
|
- npm package: [npmjs.com/package/aura-glass](https://www.npmjs.com/package/aura-glass)
|
|
153
153
|
- Changelog: [CHANGELOG.md](./CHANGELOG.md)
|
|
154
154
|
- Installation guide: [INSTALLATION.md](./INSTALLATION.md)
|
|
155
|
+
- Documentation: [docs](./docs)
|
|
156
|
+
- Examples: [examples](./examples)
|
|
155
157
|
- Contributing guide: [CONTRIBUTING.md](./CONTRIBUTING.md)
|
|
158
|
+
- Security policy: [SECURITY.md](./SECURITY.md)
|
|
156
159
|
- Agent context: [llms.txt](./llms.txt)
|
|
157
160
|
|
|
161
|
+
## Contributing
|
|
162
|
+
|
|
163
|
+
Contributions should improve package reliability, developer adoption, visual quality, accessibility, SSR behavior, documentation, or release evidence without weakening the public package boundary. Read [CONTRIBUTING.md](./CONTRIBUTING.md) before opening a pull request.
|
|
164
|
+
|
|
165
|
+
## Security
|
|
166
|
+
|
|
167
|
+
Report vulnerabilities using the guidance in [SECURITY.md](./SECURITY.md). Security-sensitive changes should preserve package-only installs, avoid credential leakage, and keep provider-backed hosted runtime behavior opt-in.
|
|
168
|
+
|
|
169
|
+
## License
|
|
170
|
+
|
|
171
|
+
AuraGlass is released under the [MIT License](./LICENSE).
|
|
172
|
+
|
|
158
173
|
## Package-Only And Optional Hosted Runtime
|
|
159
174
|
|
|
160
175
|
The public npm package is the primary supported AuraGlass surface. Package-only apps install `aura-glass`, import components and CSS, and do not need AuraGlass API, WebSocket, Redis, OpenAI, Pinecone, Google Vision, Remove.bg, or Sentry infrastructure.
|
|
@@ -537,7 +552,7 @@ Useful scripts:
|
|
|
537
552
|
|
|
538
553
|
## Release Evidence
|
|
539
554
|
|
|
540
|
-
The 3.4 surface redesign is verified by the release gate commands below — typecheck, token and style lints, the 31-check glass pipeline, 90 WCAG AA contrast checks, and 432 Jest suites with 2,373 tests — while 3.3-era package launch claims remain backed by checked-in evidence under `reports/3.3-release`. The
|
|
555
|
+
The 3.4 surface redesign is verified by the release gate commands below — typecheck, token and style lints, the 31-check glass pipeline, 90 WCAG AA contrast checks, and 432 Jest suites with 2,373 tests — while 3.3-era package launch claims remain backed by checked-in evidence under `reports/3.3-release`. The normal publish path uses `npm publish --access public --tag latest` from a clean release commit after the dry-run, pack, and integration gates pass; `package.json` enables npm provenance for trusted publishing environments.
|
|
541
556
|
|
|
542
557
|
Package gates:
|
|
543
558
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aura-glass",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.7",
|
|
4
4
|
"description": "Liquid Glass React and Next.js component library for polished dashboards, AI apps, media tools, and SaaS interfaces.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -504,12 +504,19 @@
|
|
|
504
504
|
"zod": "^3.22.0"
|
|
505
505
|
},
|
|
506
506
|
"overrides": {
|
|
507
|
+
"@grpc/grpc-js": "^1.14.4",
|
|
508
|
+
"@opentelemetry/core": "^2.9.0",
|
|
509
|
+
"@opentelemetry/resources": "^2.9.0",
|
|
510
|
+
"@opentelemetry/sdk-trace-base": "^2.9.0",
|
|
507
511
|
"@tootallnate/once": "^3.0.1",
|
|
508
512
|
"github-build": {
|
|
509
513
|
"axios": "^1.16.0"
|
|
510
514
|
},
|
|
515
|
+
"protobufjs": "^7.6.5",
|
|
511
516
|
"scheduler": "^0.23.0",
|
|
512
|
-
"serialize-javascript": "^7.0.5"
|
|
517
|
+
"serialize-javascript": "^7.0.5",
|
|
518
|
+
"socket.io-adapter": "^2.5.8",
|
|
519
|
+
"ws": "^8.21.0"
|
|
513
520
|
},
|
|
514
521
|
"bundlesize": [
|
|
515
522
|
{
|