-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.27 KB
/
package.json
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
{
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
"@types/jsdom": "^21.1.7",
"@types/uuid": "^9.0.8",
"jsdom": "^23.2.0",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vitest": "^1.6.0",
"xstate": "^5.18.2"
},
"name": "@statelyai/inspect",
"version": "0.5.2",
"description": "Inspection utilities for state, actors, workflows, and state machines.",
"main": "dist/index.js",
"repository": "https://github.com/statelyai/inspect.git",
"author": "David Khourshid <[email protected]>",
"license": "MIT",
"dependencies": {
"fast-safe-stringify": "^2.1.1",
"isomorphic-ws": "^5.0.0",
"partysocket": "^0.0.25",
"safe-stable-stringify": "^2.4.3",
"superjson": "^1.13.3",
"uuid": "^9.0.1"
},
"peerDependencies": {
"xstate": "^5.5.1"
},
"scripts": {
"build": "tsup src/index.ts --dts",
"watch": "tsup src/index.ts --dts --watch",
"test": "vitest",
"prepublishOnly": "tsup src/index.ts --dts",
"changeset": "changeset",
"release": "changeset publish",
"version": "changeset version",
"dev": "yarn build && ./scripts/dev.sh",
"typecheck": "tsc --noEmit"
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]"
}