forked from cevr/effect-machine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.84 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
{
"name": "@humanlayer/effect-machine",
"version": "0.19.1",
"repository": {
"type": "git",
"url": "https://github.com/humanlayer/effect-machine.git"
},
"files": [
"dist"
],
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./cluster": {
"import": {
"types": "./dist/cluster/index.d.ts",
"default": "./dist/cluster/index.js"
}
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"typecheck": "tsgo --noEmit",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"test": "bun test --tsconfig-override=tsconfig.json",
"test:watch": "bun test --watch",
"gate": "concurrently -n type,lint,fmt,test,build -c blue,yellow,magenta,green,cyan \"bun run typecheck\" \"bun run lint:fix\" \"bun run fmt\" \"bun run test\" \"bun run build\"",
"prepare": "lefthook install && effect-tsgo patch",
"version": "changeset version",
"build": "bun --bun tsdown",
"release": "bun run build && changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@effect/cluster": "0.58.2",
"@effect/rpc": "0.75.1",
"@effect/tsgo": "0.5.2",
"@oxlint/plugins": "1.78.0",
"@types/bun": "1.3.12",
"@typescript/native-preview": "7.0.0-dev.20260507.1",
"concurrently": "^9.2.1",
"effect": "4.0.0-beta.107",
"effect-bun-test": "0.3.0",
"lefthook": "^2.1.5",
"oxfmt": "^0.44.0",
"oxlint": "1.78.0",
"oxlint-tsgolint": "7.0.2001",
"tsdown": "^0.21.7",
"typescript": "^6.0.2"
},
"peerDependencies": {
"effect": "^4.0.0-beta.107"
},
"peerDependenciesMeta": {
"effect": {
"optional": false
}
}
}