-
Notifications
You must be signed in to change notification settings - Fork 146
Expand file tree
/
Copy pathpackage.json
More file actions
145 lines (145 loc) · 4.09 KB
/
package.json
File metadata and controls
145 lines (145 loc) · 4.09 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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "machina",
"private": true,
"description": "A library for creating powerful and flexible finite state machines. Loosely inspired by Erlang/OTP's gen_fsm behavior.",
"version": "0.1.0",
"homepage": "https://machina-js.org/",
"repository": {
"type": "git",
"url": "git://github.com/ifandelse/machina.js.git"
},
"author": "Jim Cowart (http://ifandelse.com)",
"contributors": [
{
"name": "Jim Cowart",
"email": "jim@ifandelse.com",
"url": "http://ifandelse.com"
},
{
"name": "Doug Neiner",
"email": "doug@dougneiner.com",
"url": "http://code.dougneiner.com"
},
{
"name": "Friedemann Altrock",
"email": "frodenius@gmail.com",
"url": "https://github.com/fwg"
},
{
"name": "Michiel Trimpe",
"email": "michiel@trimpe.nl",
"url": "https://github.com/mtrimpe"
},
{
"name": "Brian Mavity",
"url": "https://github.com/bmavity"
},
{
"name": "Alex Robson",
"email": "arobson@gmail.com",
"url": "http://github.com/arobson"
},
{
"name": "Dominic Barnes",
"email": "dominic@dbarnes.info",
"url": "http://github.com/dominicbarnes"
},
{
"name": "Tim Harper",
"email": "timcharper@gmail.com",
"url": "http://tim.theenchanter.com/"
},
{
"name": "James Pooton",
"email": "james@codelica.com",
"url": "http://github.com/codelica"
},
{
"name": "Brad Fol",
"url": "https://github.com/bradfol"
},
{
"name": "Ignacio Carbajo",
"url": "http://ignaciocarbajo.com"
},
{
"name": "Joel Purra",
"url": "http://joelpurra.com/"
}
],
"keywords": [
"state machine",
"finite state machine",
"fsm",
"workflow",
"state",
"machina",
"machina-js",
"machina.js",
"machinajs",
"hierarchical",
"state chart",
"state charts"
],
"bugs": {
"email": "jim@ifandelse.com",
"url": "http://github.com/ifandelse/machina.js/issues"
},
"engines": {
"node": ">=22.22"
},
"packageManager": "pnpm@10.29.3",
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
},
{
"type": "GPL",
"url": "http://opensource.org/licenses/GPL-2.0"
}
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"test": "turbo run test",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build && changeset publish",
"checks": "turbo run lint && turbo run test && turbo run build",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,css,md,mdx,astro}": "prettier --write",
"*.json": "prettier --write"
},
"devDependencies": {
"@apogeelabs/the-agency": "0.4.0",
"@changesets/cli": "^2.30.0",
"@eslint/js": "^9.39.2",
"@types/jest": "^30.0.0",
"@types/node": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.3.0",
"husky": "^9.1.7",
"jest": "^30.3.0",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"tsdown": "^0.20.3",
"turbo": "^2.8.9",
"typescript": "^5.9.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"sharp"
]
}
}