Skip to content

Commit b4e35a4

Browse files
committedDec 23, 2024
feat: use custom conditions for live monorepo types
1 parent c735ef7 commit b4e35a4

File tree

43 files changed

+1653
-1064
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+1653
-1064
lines changed
 
+32-18
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,34 @@
11
{
2-
"name": "@elizaos/adapter-postgres",
3-
"version": "0.1.7-alpha.1",
4-
"main": "dist/index.js",
5-
"type": "module",
6-
"types": "dist/index.d.ts",
7-
"dependencies": {
8-
"@elizaos/core": "workspace:*",
9-
"@types/pg": "8.11.10",
10-
"pg": "8.13.1"
11-
},
12-
"devDependencies": {
13-
"tsup": "8.3.5"
14-
},
15-
"scripts": {
16-
"build": "tsup --format esm --dts",
17-
"dev": "tsup --format esm --dts --watch",
18-
"lint": "eslint --fix --cache ."
19-
}
2+
"name": "@elizaos/adapter-postgres",
3+
"version": "0.1.7-alpha.1",
4+
"type": "module",
5+
"main": "dist/index.js",
6+
"module": "dist/index.js",
7+
"types": "dist/index.d.ts",
8+
"exports": {
9+
"./package.json": "./package.json",
10+
".": {
11+
"import": {
12+
"@ai16z/source": "./src/index.ts",
13+
"types": "./dist/index.d.ts",
14+
"default": "./dist/index.js"
15+
}
16+
}
17+
},
18+
"files": [
19+
"dist"
20+
],
21+
"dependencies": {
22+
"@elizaos/core": "workspace:*",
23+
"@types/pg": "8.11.10",
24+
"pg": "8.13.1"
25+
},
26+
"devDependencies": {
27+
"tsup": "8.3.5"
28+
},
29+
"scripts": {
30+
"build": "tsup --format esm --dts",
31+
"dev": "tsup --format esm --dts --watch",
32+
"lint": "eslint --fix --cache ."
33+
}
2034
}

‎packages/adapter-redis/package.json

+35-21
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,37 @@
11
{
2-
"name": "@elizaos/adapter-redis",
3-
"version": "0.1.7-alpha.1",
4-
"main": "dist/index.js",
5-
"type": "module",
6-
"types": "dist/index.d.ts",
7-
"dependencies": {
8-
"@elizaos/core": "workspace:*",
9-
"ioredis": "5.4.2"
10-
},
11-
"devDependencies": {
12-
"@types/ioredis": "^5.0.0",
13-
"tsup": "8.3.5"
14-
},
15-
"scripts": {
16-
"build": "tsup --format esm --dts",
17-
"dev": "tsup --format esm --dts --watch",
18-
"lint": "eslint --fix --cache ."
19-
},
20-
"peerDependencies": {
21-
"whatwg-url": "7.1.0"
22-
}
2+
"name": "@elizaos/adapter-redis",
3+
"version": "0.1.7-alpha.1",
4+
"type": "module",
5+
"main": "dist/index.js",
6+
"module": "dist/index.js",
7+
"types": "dist/index.d.ts",
8+
"exports": {
9+
"./package.json": "./package.json",
10+
".": {
11+
"import": {
12+
"@ai16z/source": "./src/index.ts",
13+
"types": "./dist/index.d.ts",
14+
"default": "./dist/index.js"
15+
}
16+
}
17+
},
18+
"files": [
19+
"dist"
20+
],
21+
"dependencies": {
22+
"@elizaos/core": "workspace:*",
23+
"ioredis": "5.4.2"
24+
},
25+
"devDependencies": {
26+
"@types/ioredis": "^5.0.0",
27+
"tsup": "8.3.5"
28+
},
29+
"scripts": {
30+
"build": "tsup --format esm --dts",
31+
"dev": "tsup --format esm --dts --watch",
32+
"lint": "eslint --fix --cache ."
33+
},
34+
"peerDependencies": {
35+
"whatwg-url": "7.1.0"
36+
}
2337
}

0 commit comments

Comments
 (0)