@pie-players/pie-calculator 0.1.1 → 0.1.3

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/dist/index.d.ts CHANGED
@@ -4,5 +4,5 @@
4
4
  * Calculator provider interfaces and types for PIE Assessment Toolkit.
5
5
  * No UI dependencies - pure TypeScript interfaces.
6
6
  */
7
- export type { CalculationHistoryEntry, Calculator, CalculatorProvider, CalculatorProviderCapabilities, CalculatorProviderConfig, CalculatorState, CalculatorType, DesmosCalculatorConfig, TICalculatorConfig, } from "./provider-interface";
7
+ export type { CalculationHistoryEntry, Calculator, CalculatorProvider, CalculatorProviderCapabilities, CalculatorProviderConfig, CalculatorState, CalculatorType, DesmosCalculatorConfig, TICalculatorConfig, } from "./provider-interface.js";
8
8
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,YAAY,EACX,uBAAuB,EACvB,UAAU,EACV,kBAAkB,EAClB,8BAA8B,EAC9B,wBAAwB,EACxB,eAAe,EACf,cAAc,EACd,sBAAsB,EACtB,kBAAkB,GAClB,MAAM,sBAAsB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,YAAY,EACX,uBAAuB,EACvB,UAAU,EACV,kBAAkB,EAClB,8BAA8B,EAC9B,wBAAwB,EACxB,eAAe,EACf,cAAc,EACd,sBAAsB,EACtB,kBAAkB,GAClB,MAAM,yBAAyB,CAAC"}
package/package.json CHANGED
@@ -1,24 +1,22 @@
1
1
  {
2
2
  "name": "@pie-players/pie-calculator",
3
- "version": "0.1.1",
4
- "description": "Calculator provider interfaces and types for PIE Assessment Toolkit - No UI dependencies",
5
- "type": "module",
3
+ "version": "0.1.3",
4
+ "author": "PIE Framework",
6
5
  "main": "./dist/index.js",
7
- "types": "./dist/index.d.ts",
6
+ "devDependencies": {
7
+ "typescript": "^5.7.2"
8
+ },
8
9
  "exports": {
9
10
  ".": {
10
11
  "types": "./dist/index.d.ts",
11
12
  "import": "./dist/index.js"
12
13
  }
13
14
  },
15
+ "description": "Calculator provider interfaces and types for PIE Assessment Toolkit - No UI dependencies",
14
16
  "files": [
15
17
  "dist",
16
18
  "README.md"
17
19
  ],
18
- "scripts": {
19
- "build": "tsc",
20
- "typecheck": "tsc --noEmit"
21
- },
22
20
  "keywords": [
23
21
  "pie",
24
22
  "calculator",
@@ -26,9 +24,11 @@
26
24
  "interfaces",
27
25
  "accessibility"
28
26
  ],
29
- "author": "PIE Framework",
30
27
  "license": "MIT",
31
- "devDependencies": {
32
- "typescript": "^5.7.2"
33
- }
28
+ "scripts": {
29
+ "build": "tsc",
30
+ "typecheck": "tsc --noEmit"
31
+ },
32
+ "type": "module",
33
+ "types": "./dist/index.d.ts"
34
34
  }