-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.55 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.55 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
{
"name": "effect-machine",
"version": "0.16.0",
"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": "tsgo --noEmit",
"typecheck:v3": "tsc --noEmit -p v3/tsconfig.json",
"lint": "concurrently -n ox,effect -c yellow,blue \"oxlint\" \"bun run lint:effect\"",
"lint:ox": "oxlint",
"lint:effect": "effect-language-service diagnostics --project tsconfig.json --lspconfig \"$(cat .effect-lsp.json)\"",
"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",
"version": "changeset version",
"build": "concurrently -n v4,v3 -c cyan,magenta \"tsdown\" \"tsdown --config v3/tsdown.config.ts\"",
"release": "bun run build && changeset publish"
},
"dependencies": {
"effect": "4.0.0-beta.47"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@effect/language-service": "^0.85.1",
"@types/bun": "1.3.12",
"@typescript/native-preview": "^7.0.0-dev.20260412.1",
"concurrently": "^9.2.1",
"effect-bun-test": "0.3.0",
"effect-v3": "npm:effect@^3.21.0",
"lefthook": "^2.1.5",
"oxfmt": "^0.44.0",
"oxlint": "^1.59.0",
"tsdown": "^0.21.7",
"typescript": "^6.0.2"
},
"peerDependencies": {
"effect": ">=4.0.0-beta.47"
},
"peerDependenciesMeta": {
"effect": {
"optional": false
}
},
"overrides": {
"effect": "4.0.0-beta.47"
}
}