-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.09 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
{
"name": "@statelyai/inspect",
"packageManager": "pnpm@10.28.2",
"type": "module",
"version": "0.7.2",
"description": "Inspection utilities for state, actors, workflows, and state machines.",
"author": "David Khourshid <davidkpiano@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/statelyai/inspect#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/statelyai/inspect.git"
},
"bugs": {
"url": "https://github.com/statelyai/inspect/issues"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./server": {
"types": "./dist/server.d.mts",
"default": "./dist/server.mjs"
}
},
"dependencies": {
"fast-safe-stringify": "^2.1.1",
"isomorphic-ws": "^5.0.0",
"partysocket": "^0.0.25",
"safe-stable-stringify": "^2.5.0",
"superjson": "^1.13.3",
"ws": "^8.20.0"
},
"imports": {
"#uuid": {
"worker": "./dist/uuid-browser.mjs",
"browser": "./dist/uuid-browser.mjs",
"default": "./dist/uuid-node.mjs"
}
},
"peerDependencies": {
"xstate": "^5.5.1"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@types/jsdom": "^21.1.7",
"@types/ws": "^8.18.1",
"jsdom": "^23.2.0",
"publint": "^0.3.15",
"tsdown": "^0.18.4",
"typescript": "^5.9.3",
"vitest": "^1.6.1",
"xstate": "^5.30.0"
},
"scripts": {
"build": "tsdown",
"watch": "tsdown --watch",
"test": "vitest",
"typecheck": "tsc --noEmit",
"verify": "pnpm typecheck && pnpm test -- --run && pnpm build && pnpm validate:package",
"validate:package": "publint",
"prepublishOnly": "pnpm run build",
"changeset": "changeset",
"release": "pnpm run build && changeset publish",
"version": "changeset version",
"example": "node example.mjs",
"dev": "pnpm build && ./scripts/dev.sh"
},
"publishConfig": {
"access": "public"
}
}