forked from statelyai/xstate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.51 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@xstate/inspect",
"version": "0.8.0",
"description": "XState inspection utilities",
"keywords": [
"state",
"machine",
"statechart",
"scxml",
"state machine",
"visualizer",
"viz"
],
"author": "David Khourshid <[email protected]>",
"homepage": "https://github.com/statelyai/xstate/tree/main/packages/xstate-inspect#readme",
"license": "MIT",
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"sideEffects": false,
"files": [
"lib/**/*.js",
"lib/**/*.d.ts",
"es/**/*.js",
"es/**/*.d.ts",
"dist/**/*.js"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/statelyai/xstate.git"
},
"scripts": {
"clean": "rm -rf dist lib es tsconfig.tsbuildinfo",
"test": "jest",
"build": "rollup -c",
"prepare": "npm run build"
},
"bugs": {
"url": "https://github.com/statelyai/xstate/issues"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@types/ws": "^8.2.2",
"rollup": "^2.69.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.8.4",
"ws": "^8.4.0",
"xstate": "*"
},
"peerDependencies": {
"@types/ws": "^8.0.0",
"ws": "^8.0.0",
"xstate": "^4.38.1"
},
"peerDependenciesMeta": {
"@types/ws": {
"optional": true
}
},
"dependencies": {
"fast-safe-stringify": "^2.1.1"
}
}