@pie-players/pie-calculator-desmos 0.3.2 → 0.3.4

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/README.md +1 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -170,7 +170,7 @@ export default async function handler(req, res) {
170
170
  **Important**: Even with a proxy, if the client loads the Desmos script, a determined user could still inspect network traffic and find the API key embedded in the script content. For true security:
171
171
 
172
172
  1. Consider if Desmos calculators are necessary for your use case
173
- 2. Use alternative open-source calculator libraries (like Math.js) when possible
173
+ 2. Use provider-driven fallback strategies when a licensed graphing calculator is not required
174
174
  3. Contact Desmos at <partnerships@desmos.com> to discuss enterprise security options
175
175
  4. Implement rate limiting and usage monitoring to detect key misuse
176
176
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pie-players/pie-calculator-desmos",
3
- "version": "0.3.2",
3
+ "version": "0.3.4",
4
4
  "description": "Desmos calculator provider for PIE Assessment Toolkit - High-quality graphing calculators",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -38,10 +38,10 @@
38
38
  "access": "public"
39
39
  },
40
40
  "dependencies": {
41
- "@pie-players/pie-calculator": "0.3.2"
41
+ "@pie-players/pie-calculator": "0.3.4"
42
42
  },
43
43
  "devDependencies": {
44
- "typescript": "^5.7.2"
44
+ "typescript": "^5.9.3"
45
45
  },
46
46
  "sideEffects": false,
47
47
  "homepage": "https://github.com/pie-framework/pie-players/tree/master/packages/calculator-desmos#readme",