-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.46 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.46 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
44
45
46
47
48
49
50
{
"name": "@statebacked/machine",
"version": "0.6.4",
"description": "Useful types and utilities for defining StateBacked.dev machine definitions for the State Backed XState backend as a service",
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"sideEffects": false,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc src/index.ts --strict --declaration --module commonjs --outDir lib --lib ES2015,WebWorker && tsc src/index.ts --strict --declaration --module esnext --outDir es --lib ES2015,WebWorker",
"prettier": "prettier --write \"src/**/*.ts\"",
"lint": "eslint src",
"doc": "typedoc"
},
"files": [
"lib/**/*.js",
"lib/**/*.d.ts",
"es/**/*.js",
"es/**/*.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/statebacked/machine.git"
},
"keywords": [
"statechart",
"state machine",
"scxml",
"state",
"finite state machine",
"state backed",
"backend as a service",
"paas"
],
"author": "Adam Berger <adam@statebacked.dev>",
"license": "MIT",
"bugs": {
"url": "https://github.com/statebacked/machine/issues"
},
"homepage": "https://github.com/statebacked/machine#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"eslint": "^8.43.0",
"prettier": "^2.8.8",
"typedoc": "^0.24.8",
"typescript": "^5.1.6"
}
}