-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.1 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 3.1 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": "@golemcloud/effect-golem",
"version": "1.5.0",
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"description": "Write Golem agents on top of Effect v4: Effect Schema-typed methods, durable execution, snapshots, sagas, RPC, HTTP, webhooks, KV/blob, and RDBMS adapters compiled to a Golem WASM component.",
"repository": {
"type": "git",
"url": "git+https://github.com/golemcloud/effect-golem.git"
},
"homepage": "https://github.com/golemcloud/effect-golem#readme",
"bugs": {
"url": "https://github.com/golemcloud/effect-golem/issues"
},
"keywords": [
"golem",
"effect",
"wasm",
"agent",
"durable-execution"
],
"type": "module",
"main": "dist/index.mjs",
"types": "dist/effect-golem.d.ts",
"exports": {
".": {
"types": "./dist/effect-golem.d.ts",
"import": "./dist/index.mjs"
},
"./sqlite": {
"types": "./dist/effect-golem-sqlite.d.ts",
"import": "./dist/sqlite.mjs"
},
"./postgres": {
"types": "./dist/effect-golem-postgres.d.ts",
"import": "./dist/postgres.mjs"
},
"./mysql": {
"types": "./dist/effect-golem-mysql.d.ts",
"import": "./dist/mysql.mjs"
},
"./ignite2": {
"types": "./dist/effect-golem-ignite2.d.ts",
"import": "./dist/ignite.mjs"
},
"./internal/*": null,
"./host/*": null,
"./*": {
"types": "./dist/src/*.d.ts",
"import": "./dist/src/*.js"
}
},
"files": [
"dist",
"wasm",
"golem-types"
],
"scripts": {
"build": "tsc -p tsconfig.build.json && node ./scripts/build-types-entry.mjs",
"build:bundle": "rollup -c",
"generate-dts": "wasm-rquickjs generate-dts --wit ./wit --output golem-types-generated --world agent-guest",
"generate-agent-template": "node ./scripts/generate-agent-template.mjs",
"compile-agent-template": "cargo build --target wasm32-wasip2 --manifest-path=agent-template/Cargo.toml --release --features full,golem",
"copy-agent-template": "node ./scripts/copy-agent-template.mjs",
"build-agent-template": "npm run build:bundle && npm run generate-agent-template && npm run compile-agent-template && npm run copy-agent-template",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:e2e:rdbms": "cd integration-test && npm run infra:up && golem -L build && golem -L -Y deploy && npm run test:rdbms"
},
"dependencies": {
"effect": "4.0.0-beta.98"
},
"devDependencies": {
"@effect/vitest": "4.0.0-beta.98",
"@eslint/js": "^9.17.0",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.4.2",
"rollup": "^4.60.2",
"rollup-plugin-typescript2": "^0.37.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"vitest": "^3.2.4"
}
}