-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.11 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.11 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
{
"name": "effect-machine",
"version": "0.7.2",
"repository": {
"type": "git",
"url": "https://github.com/cevr/effect-machine.git"
},
"files": [
"dist",
"dist-v3"
],
"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": "./dist-v3/index.d.ts",
"default": "./dist-v3/index.js"
}
},
"./v3/cluster": {
"import": {
"types": "./dist-v3/cluster/index.d.ts",
"default": "./dist-v3/cluster/index.js"
}
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"typecheck": "tsc --noEmit",
"typecheck:v3": "tsc --noEmit -p tsconfig.v3.json",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"test": "bun test",
"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 || true && effect-language-service patch",
"version": "changeset version",
"build": "tsdown && tsdown --config tsdown.v3.config.ts",
"release": "bun run build && changeset publish"
},
"dependencies": {
"effect": "4.0.0-beta.26"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@effect/language-service": "^0.75.1",
"@types/bun": "1.3.9",
"concurrently": "^9.2.1",
"effect-bun-test": "0.2.0",
"effect-v3": "npm:effect@^3.19.18",
"lefthook": "^2.1.1",
"oxfmt": "^0.33.0",
"oxlint": "^1.48.0",
"tsdown": "^0.20.3",
"typescript": "^5.9.3"
},
"peerDependencies": {
"effect": ">=3.19.16"
},
"peerDependenciesMeta": {
"effect": {
"optional": false
}
},
"overrides": {
"effect": "4.0.0-beta.26"
}
}