-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.23 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
{
"name": "smply",
"version": "0.1.21",
"description": "The smply CLI for the StateBacked.dev XState backend as a service",
"license": "MIT",
"author": "Adam Berger <adam@statebacked.dev>",
"bin": "./dist/index.js",
"module": "./dist/index.js",
"type": "module",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"scripts": {
"build": "tsc",
"prettier": "prettier --write ."
},
"devDependencies": {
"@types/node": "^16.11.0",
"prettier": "^3.0.0",
"typescript": "^5.1.6"
},
"keywords": [
"statechart",
"state machine",
"scxml",
"state",
"finite state machine",
"state backed",
"backend as a service",
"paas"
],
"homepage": "https://statebacked.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/statebacked/smply.git"
},
"bugs": {
"url": "https://github.com/statebacked/smply/issues"
},
"exports": {
".": {
"import": "./esm/mod.js"
}
},
"dependencies": {
"@gjsify/esbuild-plugin-deno-loader": "^0.0.3",
"@statebacked/client": "^0.1.40",
"@statebacked/token": "^0.2.0",
"@supabase/supabase-js": "2.26.0",
"commander": "11.0.0",
"esbuild": "^0.18.11",
"node-fetch": "^3.3.1"
}
}