-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.45 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.45 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
{
"name": "effect-machine",
"version": "0.17.1",
"repository": {
"type": "git",
"url": "https://github.com/cevr/effect-machine.git"
},
"files": [
"dist",
"v3/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"
}
},
"./v3": {
"import": {
"types": "./v3/dist/index.d.ts",
"default": "./v3/dist/index.js"
}
},
"./v3/cluster": {
"import": {
"types": "./v3/dist/cluster/index.d.ts",
"default": "./v3/dist/cluster/index.js"
}
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"typecheck": "concurrently -n v4,v3 -c blue,magenta \"tsgo --noEmit\" \"bun run typecheck:v3\"",
"typecheck:v3": "tsgo --noEmit -p v3/tsconfig.json",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"test": "bun test --tsconfig-override=tsconfig.json",
"test:v3": "cd v3 && bun test --tsconfig-override=tsconfig.json ./test/",
"test:watch": "bun test --watch",
"test:all": "bun run test && bun run test:v3",
"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:all\" \"bun run build\"",
"prepare": "lefthook install && effect-tsgo patch",
"version": "changeset version",
"build": "concurrently -n v4,v3 -c cyan,magenta \"bun --bun tsdown\" \"bun --bun tsdown --config v3/tsdown.config.ts\"",
"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",
"@types/bun": "1.3.12",
"@typescript/native-preview": "7.0.0-dev.20260507.1",
"concurrently": "^9.2.1",
"effect": "4.0.0-beta.64",
"effect-bun-test": "0.3.0",
"effect-v3": "npm:effect@3.21.2",
"lefthook": "^2.1.5",
"oxfmt": "^0.44.0",
"oxlint": "^1.63.0",
"oxlint-tsgolint": "^0.22.1",
"tsdown": "^0.21.7",
"typescript": "^6.0.2"
},
"peerDependencies": {
"effect": ">=4.0.0-beta.64"
},
"peerDependenciesMeta": {
"effect": {
"optional": false
}
}
}