scorm-again 3.1.0 → 3.1.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scorm-again",
3
- "version": "3.1.0",
3
+ "version": "3.1.2",
4
4
  "description": "A modern SCORM JavaScript run-time library for SCORM 1.2 and SCORM 2004",
5
5
  "main": "dist/scorm-again.js",
6
6
  "types": "index.d.ts",
@@ -90,57 +90,57 @@
90
90
  "test": "test"
91
91
  },
92
92
  "devDependencies": {
93
- "@babel/core": "<8",
94
- "@babel/preset-env": "<8",
95
- "@cyclonedx/cyclonedx-npm": "^5.0.0",
93
+ "@cyclonedx/cyclonedx-npm": "^6.0.0",
96
94
  "@eslint/js": "10.0.1",
97
95
  "@mo36924/rollup-plugin-cache": "1.6.11",
98
96
  "@playwright/test": "1.61.1",
99
- "@rollup/plugin-babel": "7.1.0",
100
97
  "@rollup/plugin-terser": "1.0.0",
101
98
  "@rollup/plugin-typescript": "12.3.0",
99
+ "@swc/core": "^1.15.43",
102
100
  "@types/cors": "^2.8.19",
103
101
  "@types/express": "^5.0.6",
104
- "@vitest/coverage-v8": "4.1.9",
105
- "@vitest/ui": "4.1.9",
102
+ "@vitest/coverage-v8": "4.1.10",
103
+ "@vitest/ui": "4.1.10",
106
104
  "cors": "^2.8.6",
105
+ "es-check": "^9.6.4",
107
106
  "esbuild": "0.28.1",
108
- "eslint": "10.6.0",
109
- "eslint-plugin-jsdoc": "63.0.10",
107
+ "eslint": "10.7.0",
108
+ "eslint-plugin-jsdoc": "63.0.13",
110
109
  "express": "^5.2.1",
111
110
  "extract-zip": "2.0.1",
112
- "fast-check": "4.8.0",
111
+ "fast-check": "4.9.0",
113
112
  "glob": "13.0.6",
114
113
  "globals": "17.7.0",
115
114
  "jsdom": "29.1.1",
116
115
  "monocart-coverage-reports": "^2.12.12",
117
- "monocart-reporter": "^2.12.1",
116
+ "monocart-reporter": "^2.12.2",
118
117
  "playwright": "1.61.1",
119
- "prettier": "3.9.4",
118
+ "prettier": "3.9.5",
120
119
  "rollup": "4.62.2",
121
- "rollup-plugin-dts": "6.4.1",
122
120
  "rollup-plugin-esbuild": "6.2.1",
121
+ "rollup-plugin-swc3": "^0.12.1",
123
122
  "standard-version": "9.5.0",
124
- "terser": "5.48.0",
123
+ "terser": "5.49.0",
125
124
  "tslib": "2.8.1",
126
- "tsx": "4.22.5",
125
+ "tsx": "4.23.1",
127
126
  "typescript": "6.0.3",
128
- "typescript-eslint": "8.62.1",
129
- "vite": "8.1.3",
130
- "vitest": "4.1.9"
127
+ "typescript-eslint": "8.64.0",
128
+ "vite": "8.1.4",
129
+ "vitest": "4.1.10"
131
130
  },
132
131
  "engines": {
133
132
  "node": ">=20.19.0"
134
133
  },
135
134
  "sideEffects": false,
136
135
  "scripts": {
137
- "build": "npm run clean && rollup -c",
136
+ "build": "npm run clean && rollup -c && npm run check:es5",
138
137
  "build:all": "npm run build && npm run build:types",
139
138
  "build:all:fast": "npm run build:fast && npm run build:types",
140
139
  "build:all:prod": "npm run build:prod && npm run build:types",
141
- "build:fast": "npm run clean && SKIP_MINIFIED=true rollup -c",
142
- "build:prod": "npm run clean && NODE_ENV=production rollup -c",
140
+ "build:fast": "npm run clean && SKIP_MINIFIED=true rollup -c && npm run check:es5",
141
+ "build:prod": "npm run clean && NODE_ENV=production rollup -c && npm run check:es5",
143
142
  "build:types": "tsc --project tsconfig.types.json",
143
+ "check:es5": "es-check es5 'dist/*.js'",
144
144
  "clean": "rm -rf dist && mkdir -p dist",
145
145
  "compile:dev": "SKIP_MINIFIED=true rollup -c -w",
146
146
  "coverage:merge": "tsx scripts/merge-coverage.ts",