forked from lucmartens/xstate-plantuml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1 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
{
"name": "@karfau/xstate-plantuml",
"version": "0.7.0-dev",
"description": "Visualize a xstate or react-automata statechart as a plantuml state diagram",
"engines": {
"node": ">=12.20"
},
"keywords": [
"xstate",
"react-automata",
"plantuml",
"statecharts",
"visualization"
],
"main": "src/core.js",
"types": "src/core.d.ts",
"files": [
"examples", "src"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/karfau/xstate-plantuml.git"
},
"scripts": {
"test": "jest",
"tsc": "tsc",
"types": "rm -f src/*.d.ts && tsc --project tsconfig.types.json && git add src/*.d.ts",
"plantuml": "docker-compose run --rm -T plantuml"
},
"devDependencies": {
"@types/jest": "27.4.1",
"@types/node": "14.18.16",
"execa": "6.1.0",
"jest": "28.0.3",
"typescript": "4.6.4",
"xstate": "4.31.0",
"xstate3": "npm:[email protected]"
},
"peerDependencies": {
"xstate": "^3.3.3 || ^4",
"execa": ">=6"
}
}