-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.03 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
{
"name": "@typeonce/effect-machine",
"version": "0.3.0",
"description": "Schema-first state machines and statecharts for Effect",
"author": "Sandro Maglione",
"repository": {
"type": "git",
"url": "git+https://github.com/typeonce-dev/effect-machine.git"
},
"bugs": {
"url": "https://github.com/typeonce-dev/effect-machine/issues"
},
"homepage": "https://github.com/typeonce-dev/effect-machine#readme",
"type": "module",
"license": "MIT",
"sideEffects": false,
"files": [
"dist",
"docs",
"README.md",
"LICENSE",
"NOTICE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./reactivity": {
"types": "./dist/reactivity.d.ts",
"import": "./dist/reactivity.js"
},
"./cluster": {
"types": "./dist/cluster.d.ts",
"import": "./dist/cluster.js"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "vitest run",
"test:types": "tstyche",
"typecheck": "tsc -p tsconfig.json --noEmit",
"perf:types": "pnpm build && node scripts/type-performance.mjs",
"format": "dprint fmt",
"format:check": "dprint check",
"test:consumer": "node scripts/test-consumer.mjs",
"pack:check": "node scripts/pack-check.mjs",
"check": "pnpm format:check && pnpm typecheck && pnpm build && pnpm test && pnpm test:types && pnpm test:consumer && pnpm pack:check",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && changeset publish"
},
"peerDependencies": {
"effect": "4.0.0-beta.102"
},
"devDependencies": {
"@changesets/cli": "2.31.0",
"@effect/vitest": "4.0.0-beta.102",
"@types/node": "25.7.0",
"dprint": "0.55.2",
"effect": "4.0.0-beta.102",
"tstyche": "7.2.1",
"typescript": "6.0.3",
"vitest": "4.1.10"
},
"packageManager": "pnpm@10.17.1",
"engines": {
"node": ">=20"
}
}