ai-pro-sdk 2.0.1 → 2.0.3
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/dist/index.js +4885 -0
- package/package.json +1 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ai-pro-sdk",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.3",
|
|
4
4
|
"description": "AI SDK v7 provider for Claude via Claude Agent SDK (use Pro/Max subscription)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai-sdk",
|
|
@@ -23,11 +23,9 @@
|
|
|
23
23
|
"type": "module",
|
|
24
24
|
"sideEffects": false,
|
|
25
25
|
"main": "./dist/index.js",
|
|
26
|
-
"types": "./dist/index.d.ts",
|
|
27
26
|
"exports": {
|
|
28
27
|
"./package.json": "./package.json",
|
|
29
28
|
".": {
|
|
30
|
-
"types": "./dist/index.d.ts",
|
|
31
29
|
"default": "./dist/index.js"
|
|
32
30
|
}
|
|
33
31
|
},
|
|
@@ -39,7 +37,6 @@
|
|
|
39
37
|
],
|
|
40
38
|
"scripts": {
|
|
41
39
|
"build": "node -e \"console.log('Build skipped; dist artifacts are already present')\"",
|
|
42
|
-
"clean": "rm -rf dist",
|
|
43
40
|
"dev": "node -e \"console.log('Development build is not configured for this package')\"",
|
|
44
41
|
"lint": "eslint src",
|
|
45
42
|
"lint:all": "eslint .",
|
|
@@ -47,7 +44,6 @@
|
|
|
47
44
|
"format:check": "prettier --check .",
|
|
48
45
|
"ci": "npm run typecheck && npm run lint:all && npm run test",
|
|
49
46
|
"prepare": "npm run build",
|
|
50
|
-
"prepublishOnly": "npm run clean && npm run build",
|
|
51
47
|
"test": "node -e \"console.log('No test suite configured')\"",
|
|
52
48
|
"test:coverage": "node -e \"console.log('No coverage suite configured')\"",
|
|
53
49
|
"test:edge": "node -e \"console.log('No edge tests configured')\"",
|