-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.7 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
{
"name": "effect-machine",
"version": "0.27.0",
"repository": {
"type": "git",
"url": "https://github.com/cevr/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"
}
},
"./atom": {
"import": {
"types": "./dist/atom.d.ts",
"default": "./dist/atom.js"
}
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"typecheck": "tsc --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",
"example:react": "bun run --cwd examples/react dev",
"example:solid": "bun run --cwd examples/solid dev",
"examples:gate": "bun run --cwd examples/shared gate && bun run --cwd examples/core gate && bun run --cwd examples/react gate && bun run --cwd examples/solid gate",
"bench": "bun benchmark/core.ts",
"gate": "concurrently -n type,lint,fmt,test,build,examples -c blue,yellow,magenta,green,cyan,white \"bun run typecheck\" \"bun run lint:fix\" \"bun run fmt\" \"bun run test\" \"bun run build\" \"bun run examples:gate\"",
"prepare": "lefthook install && effect-tsgo patch",
"version": "changeset version",
"build": "bun --bun tsdown",
"release": "bun run build && changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "1.0.1",
"@changesets/cli": "3.0.2",
"@effect-machine/examples-shared": "file:./examples/shared",
"@effect/atom-react": "4.0.0-rc.112",
"@effect/atom-solid": "4.0.0-rc.112",
"@effect/tsgo": "0.41.0",
"@solidjs/testing-library": "0.8.10",
"@testing-library/react": "16.3.3",
"@types/bun": "1.4.1",
"@types/react": "19.2.18",
"@types/react-dom": "19.2.7",
"@vitejs/plugin-react": "6.1.1",
"concurrently": "10.0.5",
"effect": "4.0.0-rc.112",
"effect-bun-test": "0.3.0",
"jsdom": "30.0.1",
"lefthook": "2.1.12",
"motion": "13.2.0",
"oxfmt": "0.66.0",
"oxlint": "1.81.0",
"oxlint-plugin-effect": "0.12.1",
"react": "19.2.8",
"react-dom": "19.2.8",
"solid-js": "1.9.15",
"solid-transition-group": "0.3.0",
"tsdown": "0.23.0",
"typescript": "7.0.2",
"vite": "8.2.2",
"vite-plugin-solid": "2.11.14",
"vitest": "5.0.0"
},
"peerDependencies": {
"effect": ">=4.0.0-rc.112 <5"
},
"peerDependenciesMeta": {
"effect": {
"optional": false
}
}
}