-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.41 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.41 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
{
"name": "@statebacked/github-visualizer-bot",
"version": "0.1.0",
"private": true,
"description": "GitHub visualizer bot",
"main": "dist/index.js",
"sideEffects": false,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc --strict --declaration --module commonjs --outDir dist",
"prettier": "prettier --write \"src/**/*.ts\" \"scripts/**/*.js\"",
"lint": "eslint src",
"smply": "smply",
"create-machine": "smply machines create --machine github-visualizer-bot --node ./src/index.ts",
"publish-machine-version": "node ./scripts/publish-version.js github-visualizer-bot",
"typegen": "xstate typegen ./src/machine.ts"
},
"author": "Adam Berger <adam@statebacked.dev>",
"devDependencies": {
"@types/node": "^20.3.2",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"@xstate/cli": "^0.5.2",
"eslint": "^8.43.0",
"prettier": "^2.8.8",
"smply": "^0.1.12",
"typedoc": "^0.24.8",
"typescript": "^5.1.6"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.414.0",
"@statebacked/machine-def": "^0.4.1",
"@statebacked/react-statechart": "^0.1.3",
"@xstate/machine-extractor": "^0.11.0",
"esbuild": "^0.19.3",
"node-interval-tree": "^2.1.2",
"octokit": "^3.1.0",
"parse-diff": "^0.11.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"xstate": "^4.38.2"
}
}