simplex-ts 1.0.2 → 1.0.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 +9 -7
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Simplex TypeScript Package Template
1
+ # Simplex TypeScript
2
2
 
3
3
  A TypeScript package for browser automation and web interaction using Simplex API.
4
4
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "simplex-ts",
3
- "version": "1.0.2",
4
- "description": "A TypeScript package template",
3
+ "version": "1.0.4",
4
+ "description": "A TypeScript package for the Simplex API",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
7
7
  "types": "./dist/index.d.ts",
@@ -22,16 +22,18 @@
22
22
  "license": "MIT",
23
23
  "devDependencies": {
24
24
  "@types/jest": "^29.5.12",
25
- "@types/node": "^20.11.19",
25
+ "@types/node": "^20.17.30",
26
+ "glob": "^10.3.10",
26
27
  "jest": "^29.7.0",
27
28
  "rimraf": "^5.0.5",
28
29
  "ts-jest": "^29.1.2",
30
+ "ts-node": "^10.9.2",
29
31
  "tsup": "^8.0.2",
30
- "typescript": "^5.3.3",
31
- "glob": "^10.3.10"
32
+ "typescript": "^5.8.2"
32
33
  },
33
34
  "dependencies": {
34
35
  "axios": "^1.6.7",
35
- "dotenv": "^16.4.5"
36
+ "dotenv": "^16.4.7",
37
+ "simplex-ts": "^1.0.3"
36
38
  }
37
- }
39
+ }