@jz92/ai-provider 0.2.1 → 0.2.2
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/package.json +5 -6
package/package.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jz92/ai-provider",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Environment-aware AI provider for portfolio projects. Local dev → Ollama, deployed → any cloud provider.",
|
|
5
5
|
"author": "jz92",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"private": false,
|
|
8
8
|
"type": "module",
|
|
9
|
-
"main": "./dist/index.
|
|
10
|
-
"module": "./dist/index.
|
|
9
|
+
"main": "./dist/index.cjs",
|
|
10
|
+
"module": "./dist/index.js",
|
|
11
11
|
"types": "./dist/index.d.ts",
|
|
12
12
|
"exports": {
|
|
13
13
|
".": {
|
|
14
14
|
"types": "./dist/index.d.ts",
|
|
15
|
-
"import": "./dist/index.
|
|
16
|
-
"require": "./dist/index.
|
|
15
|
+
"import": "./dist/index.js",
|
|
16
|
+
"require": "./dist/index.cjs"
|
|
17
17
|
}
|
|
18
18
|
},
|
|
19
19
|
"files": [
|
|
@@ -27,7 +27,6 @@
|
|
|
27
27
|
"dev": "tsup src/index.ts --format esm,cjs --dts --watch",
|
|
28
28
|
"type-check": "tsc --noEmit",
|
|
29
29
|
"test": "NODE_ENV=development npx tsx --tsconfig tsconfig.test.json test/smoke.ts",
|
|
30
|
-
"postinstall": "node scripts/postinstall.js",
|
|
31
30
|
"setup:local": "bash scripts/setup-local.sh",
|
|
32
31
|
"prepublishOnly": "npm run build && npm run type-check"
|
|
33
32
|
},
|