Skip to content

Commit 229e216

Browse files
committed
fix(ai): build
1 parent 1c2e06c commit 229e216

File tree

1 file changed

+17
-6
lines changed

1 file changed

+17
-6
lines changed

packages/ai/package.json

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@pipedream/ai",
33
"type": "module",
4-
"version": "0.0.1",
4+
"version": "0.0.2",
55
"description": "Pipedream AI",
66
"main": "./dist/index.js",
77
"types": "./dist/index.d.ts",
@@ -11,23 +11,34 @@
1111
"types": "./dist/index.d.ts"
1212
}
1313
},
14-
"files": [
15-
"dist",
16-
"package.json"
14+
"engines": {
15+
"node": ">=18.0.0"
16+
},
17+
"keywords": [
18+
"pipedream",
19+
"ai",
20+
"connect"
1721
],
22+
"license": "SEE LICENSE IN LICENSE",
1823
"publishConfig": {
1924
"access": "public"
2025
},
2126
"scripts": {
22-
"build": "tsc"
27+
"build": "tsc --noCheck",
28+
"prepublish": "npm run build"
2329
},
30+
"files": [
31+
"dist"
32+
],
2433
"dependencies": {
2534
"@pipedream/sdk": "workspace:^",
2635
"zod": "^3.24.4",
2736
"zod-to-json-schema": "^3.24.5"
2837
},
2938
"devDependencies": {
3039
"bun": "^1.2.13",
31-
"openai": "^4.77.0"
40+
"openai": "^4.77.0",
41+
"tsup": "^8.3.6",
42+
"typescript": "^5.6"
3243
}
3344
}

0 commit comments

Comments
 (0)