@syrtis-ai/syrtis-javascript-client 0.0.42 → 0.0.46

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 -3
  2. package/package.json +17 -25
package/README.md CHANGED
@@ -1,8 +1,6 @@
1
1
  # @syrtis-ai/syrtis-javascript-client
2
2
 
3
- Version: 0.0.42
4
-
5
- Syrtis JavaScript/TypeScript client
3
+ Version: 0.0.46
6
4
 
7
5
  ## Table of Contents
8
6
 
package/package.json CHANGED
@@ -1,38 +1,30 @@
1
1
  {
2
+ "version": "0.0.46",
3
+ "type": "module",
2
4
  "name": "@syrtis-ai/syrtis-javascript-client",
3
- "version": "0.0.42",
4
- "description": "Syrtis JavaScript/TypeScript client",
5
- "main": "dist/index.js",
6
- "types": "dist/index.d.ts",
7
- "exports": {
8
- "./*": {
9
- "types": "./dist/*.d.ts",
10
- "default": "./dist/*.js"
11
- }
12
- },
13
5
  "scripts": {
14
- "build": "tsc",
15
- "prepublishOnly": "npm run build",
16
- "test": "echo \"Error: no test specified\" && exit 1"
6
+ "clean": "rm -rf dist",
7
+ "build": "npm run clean && tsc",
8
+ "prepublishOnly": "npm run build"
17
9
  },
18
- "keywords": [
19
- "syrtis",
20
- "client"
21
- ],
22
- "author": "",
23
- "license": "MIT",
24
10
  "devDependencies": {
25
- "typescript": "^5.0.0"
11
+ "typescript": "^5.9.3"
26
12
  },
27
- "files": [
28
- "dist"
29
- ],
30
- "type": "module",
31
13
  "publishConfig": {
32
14
  "access": "public"
33
15
  },
34
16
  "dependencies": {
35
- "@wexample/js-api": "0.0.14"
17
+ "@wexample/js-api": "0.0.18"
18
+ },
19
+ "files": [
20
+ "dist"
21
+ ],
22
+ "sideEffects": false,
23
+ "exports": {
24
+ "./*": {
25
+ "types": "./dist/*.d.ts",
26
+ "default": "./dist/*.js"
27
+ }
36
28
  },
37
29
  "repository": "https://github.com/Syrtis-AI/syrtis-javascript-client"
38
30
  }