@microsoft/agents-a365-tooling-extensions-openai 0.1.0-preview.30 → 0.1.0-preview.53

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 +18 -15
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microsoft/agents-a365-tooling-extensions-openai",
3
- "version": "0.1.0-preview.30",
3
+ "version": "0.1.0-preview.53",
4
4
  "description": "Agent 365 Tooling SDK for OpenAI for AI agents built with TypeScript/Node.js",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -17,7 +17,7 @@
17
17
  "lint:fix": "eslint src/**/*.ts --fix",
18
18
  "prepublishOnly": "npm run clean && npm run build",
19
19
  "ci": "npm ci",
20
- "pack": "npm pack --pack-destination=../"
20
+ "pack": "cp ../../CHANGELOG.md . && cp ../../LICENSE.md . && npm pack --pack-destination=../"
21
21
  },
22
22
  "keywords": [
23
23
  "ai",
@@ -27,28 +27,30 @@
27
27
  "openai"
28
28
  ],
29
29
  "author": "Microsoft Corporation",
30
- "license": "See license file",
30
+ "license": "MIT",
31
31
  "repository": {
32
32
  "type": "git",
33
33
  "url": "https://github.com/microsoft/Agent365-nodejs.git",
34
34
  "directory": "packages/agents-a365-tooling-extensions-openai"
35
35
  },
36
36
  "dependencies": {
37
- "@microsoft/agents-a365-tooling": "0.1.0-preview.30",
38
- "@microsoft/agents-a365-runtime": "0.1.0-preview.30",
39
- "@openai/agents": "*",
40
- "@microsoft/agents-hosting": "*"
37
+ "@microsoft/agents-a365-runtime": "0.1.0-preview.53",
38
+ "@microsoft/agents-a365-tooling": "0.1.0-preview.53",
39
+ "@microsoft/agents-hosting": "*",
40
+ "@openai/agents": "*"
41
41
  },
42
42
  "devDependencies": {
43
- "@types/jest": "^29.5.14",
43
+ "@eslint/js": "^9.39.1",
44
+ "@types/jest": "workspace:*",
44
45
  "@types/node": "^20.0.0",
45
- "@typescript-eslint/eslint-plugin": "^6.0.0",
46
- "@typescript-eslint/parser": "^6.0.0",
47
- "eslint": "^8.0.0",
48
- "jest": "^29.0.0",
46
+ "@typescript-eslint/eslint-plugin": "^8.47.0",
47
+ "@typescript-eslint/parser": "^8.47.0",
48
+ "eslint": "^9.39.1",
49
+ "jest": "workspace:*",
49
50
  "rimraf": "^5.0.0",
50
- "ts-jest": "^29.0.0",
51
- "typescript": "^5.0.0"
51
+ "ts-jest": "workspace:*",
52
+ "typescript": "^5.9.3",
53
+ "typescript-eslint": "^8.47.0"
52
54
  },
53
55
  "engines": {
54
56
  "node": ">=18.0.0"
@@ -56,6 +58,7 @@
56
58
  "files": [
57
59
  "dist/**/*",
58
60
  "README.md",
59
- "CHANGELOG.md"
61
+ "CHANGELOG.md",
62
+ "LICENSE.md"
60
63
  ]
61
64
  }