-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.27 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
{
"name": "@webinargeek/xstate-tools",
"version": "0.0.1",
"main": "dist/index.js",
"scripts": {
"build": "npm run build --workspaces",
"format:fix": "prettier --write .",
"format": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebinarGeek/xstate-tools.git"
},
"author": "WebinarGeek",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/WebinarGeek/xstate-tools/issues"
},
"homepage": "https://github.com/WebinarGeek/xstate-tools#readme",
"description": "A collection of tools for working with XState",
"workspaces": [
"packages/*",
"examples"
],
"devDependencies": {
"@eslint/js": "^9.17.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"typescript-eslint": "^8.18.1"
}
}