-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
130 lines (130 loc) · 3.72 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
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
{
"name": "@koordinates/xstate-tree",
"main": "lib/index.js",
"types": "lib/xstate-tree.d.ts",
"version": "4.7.0",
"license": "MIT",
"description": "Build UIs with Actors using xstate and React",
"keywords": [
"react",
"javascript",
"typescript",
"ui",
"actors",
"state-machine",
"actor-model",
"xstate"
],
"homepage": "https://github.com/koordinates/xstate-tree/",
"bugs": {
"url": "https://github.com/koordinates/xstate-tree/issues/"
},
"dependencies": {
"fast-memoize": "^2.5.2",
"path-to-regexp": "^6.2.0",
"query-string": "^6.12.1",
"tiny-emitter": "^2.1.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@microsoft/api-extractor": "^7.33.6",
"@rushstack/eslint-config": "^2.6.0",
"@saithodev/semantic-release-backmerge": "^2.1.2",
"@testing-library/dom": "^8.14.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/history": "^4.7.7",
"@types/jest": "^28.1.4",
"@types/node": "^20.4.9",
"@types/react": "^17.0.29",
"@types/react-dom": "^18.0.6",
"@types/testing-library__jest-dom": "^5.14.1",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@vitejs/plugin-react": "^2.1.0",
"@xstate/immer": "^0.3.1",
"@xstate/react": "^3.0.0",
"classnames": "^2.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.3.0",
"history": "^4.10.1",
"husky": "^8.0.1",
"immer": "^9.0.15",
"jest": "^28.0.3",
"jest-environment-jsdom": "^28.0.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"rimraf": "^3.0.2",
"rxjs": "^7.5.6",
"semantic-release": "^19.0.3",
"semantic-release-npm-github-publish": "^1.5.1",
"todomvc-app-css": "^2.4.2",
"todomvc-common": "^1.0.5",
"ts-jest": "^28.0.5",
"typescript": "^4.7.3",
"vite": "^3.1.3",
"vite-tsconfig-paths": "^3.5.0",
"xstate": "^4.33.0"
},
"peerDependencies": {
"@xstate/react": "^3.x",
"react": ">= 16.8.0 < 19.0.0",
"xstate": ">= 4.20 < 5.0.0",
"zod": "^3.x"
},
"scripts": {
"lint": "eslint 'src/**/*'",
"test": "jest",
"test-examples": "tsc --noEmit",
"todomvc": "vite dev",
"build": "rimraf lib && rimraf out && tsc -p tsconfig.build.json",
"build:watch": "tsc -p tsconfig.json -w",
"api-extractor": "api-extractor run",
"release": "semantic-release",
"commitlint": "commitlint --edit"
},
"files": [
"lib/**/*.js",
"lib/xstate-tree.d.ts",
"!lib/**/*.spec.js"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"types": {
"build": {
"description": "Changes that affect the build system or external dependencies (example scopes: rollup, npm)"
},
"ci": {
"description": "Changes to our CI configuration files and scripts"
},
"docs": {
"description": "Changes to documentation"
},
"feat": {
"description": "A new feature"
},
"fix": {
"description": "Bug fixes"
},
"perf": {
"description": "A performance improvement"
},
"refactor": {
"description": "A code change that neither fixes a bug nor adds a feature"
},
"test": {
"description": "Adding or correcting tests"
},
"chore": {
"description": "Other changes that don't modify src or test files"
}
}
}
}
}