forked from bhouston/behave-graph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.85 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@behave-graph/monorepo",
"version": "0.9.10",
"description": "Simple, extensible behavior graph engine",
"private": true,
"keywords": [
"behavior",
"graph",
"flow"
],
"homepage": "http://github.com/bhouston/behave-graph",
"author": "behave-graph authors",
"bugs": {
"url": "https://github.com/bhouston/behave-graph/issues"
},
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/bhouston/behave-graph"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-typescript": "^7.16.7",
"@preconstruct/cli": "^2.2.2",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-unicorn": "^44.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"ts-node": "^10.9.1",
"typedoc": "^0.23.15",
"typescript": "^4.7.3"
},
"scripts": {
"build": "preconstruct build",
"dev": "preconstruct dev",
"watch": "preconstruct watch",
"lint": "npx eslint \"{examples,packages}/**/src/*.{ts,json}\"",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier \"{examples,packages}/**/src/*.{ts,json}\" --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix",
"docs": "typedoc",
"test": "npm run test-flow && npm run test-core",
"test-flow": "npm run test --workspace=@behave-graph/flow",
"test-core": "npm run test --workspace=@behave-graph/core",
"start": "npm run three-viewer",
"exec-graph": "npm run build && npm run start --workspace=@behave-graph/examples-exec-graph",
"build:exec-graph": "npm run build && npm run build --workspace=@behave-graph/examples-exec-graph",
"export-node-spec": "npm run build && npm run start --workspace=@behave-graph/examples-export-node-spec",
"build:export-node-spec": "npm run build && npm run build --workspace=@behave-graph/examples-export-node-spec",
"three-viewer": "npm run build && npm run start --workspace=@behave-graph/examples-three-viewer",
"build:three-viewer": "npm run build && npm run build --workspace=@behave-graph/examples-three-viewer",
"graph-editor": "npm run build && npm run start --workspace=examples/graph-editor"
},
"workspaces": [
"packages/core",
"packages/flow",
"examples/exec-graph",
"examples/export-node-spec",
"examples/graph-editor",
"examples/three-viewer"
],
"preconstruct": {
"packages": [
"packages/core",
"packages/flow"
]
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"vite": "^3.2.4"
}
}