suunto-api-wrapper 1.1.0 → 1.1.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.
Files changed (1) hide show
  1. package/package.json +6 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "suunto-api-wrapper",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Unofficial typed TypeScript client for the Suunto app API (Sports Tracker backend). Not affiliated with or endorsed by Suunto or Sports Tracker.",
5
5
  "repository": {
6
6
  "url": "https://github.com/Marius-Ar/suunto-api-wrapper"
@@ -18,14 +18,13 @@
18
18
  "files": [
19
19
  "dist"
20
20
  ],
21
- "engines": {
22
- "node": ">=20"
23
- },
24
21
  "scripts": {
25
22
  "build": "tsup",
26
23
  "dev": "tsup --watch",
27
24
  "typecheck": "tsc --noEmit",
28
25
  "test": "vitest run",
26
+ "test:node": "vitest run --project node",
27
+ "test:browser": "vitest run --project browser",
29
28
  "test:watch": "vitest"
30
29
  },
31
30
  "keywords": [],
@@ -34,6 +33,9 @@
34
33
  "type": "commonjs",
35
34
  "devDependencies": {
36
35
  "@types/node": "^25.9.1",
36
+ "@vitest/browser": "^4.1.8",
37
+ "@vitest/browser-playwright": "^4.1.8",
38
+ "playwright": "^1.60.0",
37
39
  "tsup": "^8.5.1",
38
40
  "typescript": "^6.0.3",
39
41
  "vitest": "^4.1.7"