-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.93 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@elizaos/plugin-sql",
"version": "2.0.0-alpha.18",
"type": "module",
"main": "dist/node/index.node.js",
"module": "dist/node/index.node.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/elizaos-plugins/plugin-sql"
},
"publishConfig": {
"access": "public"
},
"browser": "dist/browser/index.browser.js",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"browser": {
"types": "./dist/index.d.ts",
"import": "./dist/browser/index.browser.js",
"default": "./dist/browser/index.browser.js"
},
"node": {
"types": "./dist/index.d.ts",
"import": "./dist/node/index.node.js",
"default": "./dist/node/index.node.js"
},
"bun": {
"types": "./dist/index.d.ts",
"default": "./dist/node/index.node.js"
},
"default": "./dist/node/index.node.js"
}
},
"sideEffects": false,
"files": [
"dist",
"drizzle",
"types"
],
"dependencies": {
"@electric-sql/pglite": "^0.3.3",
"@elizaos/core": "2.0.0-alpha.114",
"@elizaos/plugin-sql": "2.0.0-alpha.18",
"@neondatabase/serverless": "^1.0.2",
"dotenv": "^17.2.3",
"drizzle-kit": "^0.31.8",
"drizzle-orm": "^0.45.1",
"pg": "^8.16.3",
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/bun": "^1.3.5",
"@biomejs/biome": "^2.3.11",
"@types/node": "^25.0.3",
"@types/pg": "^8.15.6",
"typescript": "^5.9.3"
},
"scripts": {
"dev": "bun run build.ts --watch",
"migrate:generate": "drizzle-kit generate",
"migrate": "drizzle-kit migrate",
"typecheck": "echo \"Typecheck skipped for release\"",
"clean": "rm -rf dist .turbo node_modules .turbo-tsconfig.json *.tsbuildinfo",
"format": "bunx @biomejs/biome format --write .",
"format:check": "bunx @biomejs/biome format .",
"lint": "echo \"Lint skipped for release\"",
"lint:check": "bun run lint",
"test": "vitest run __tests__/unit/",
"test:unit": "vitest run __tests__/unit/",
"test:integration": "echo 'Integration tests require scripts/run-integration-tests.sh - skipping'",
"test:integration:postgres": "bash scripts/run-integration-tests.sh --postgres",
"test:migration": "vitest run __tests__/migration/",
"test:migration:postgres": "vitest run __tests__/migration/",
"test:e2e:upgrade": "bash __tests__/migration/e2e/run-upgrade-test.sh",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"build:clean": "rm -rf dist",
"build": "bun run build.ts",
"build:ts": "bun run build.ts"
},
"gitHead": "255e37c0e4a76da0b776219db5ebb9dadf20e89f",
"milady": {
"platforms": [
"browser",
"node"
],
"runtime": "both",
"platformDetails": {
"browser": "Browser-compatible build available via exports.browser",
"node": "Node.js build available via exports.node"
}
}
}