-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
package.json
106 lines (106 loc) · 3.06 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
{
"name": "xstate-monorepo",
"private": true,
"description": "Finite State Machines and Statecharts for the Modern Web.",
"workspaces": {
"packages": [
"packages/*",
"scripts/*"
]
},
"preconstruct": {
"packages": [
"packages/!(xstate-dev)"
],
"globals": {
"react": "React"
},
"exports": {
"importConditionDefaultExport": "default"
},
"___experimentalFlags_WILL_CHANGE_IN_PATCH": {
"importsConditions": true
}
},
"scripts": {
"preinstall": "node ./scripts/ensure-pnpm.js",
"postinstall": "manypkg check && preconstruct dev",
"build": "preconstruct build",
"fix": "manypkg fix",
"lint": "eslint --cache --quiet",
"typecheck": "tsc",
"test": "jest",
"test:core": "jest packages/core",
"changeset": "changeset",
"release": "pnpm -r publish --access=public && changeset tag",
"version": "changeset version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/statelyai/xstate.git"
},
"author": "David Khourshid <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/statelyai/xstate/issues"
},
"homepage": "https://github.com/statelyai/xstate#readme",
"dependencies": {
"@babel/core": "^7.23.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@eslint/js": "^9.7.0",
"@jest/types": "^29.6.3",
"@manypkg/cli": "^0.21.4",
"@preconstruct/cli": "^2.8.1",
"@testing-library/vue": "^6.6.1",
"@types/jest": "^29.5.10",
"@types/node": "^20.14.13",
"@vue/compiler-sfc": "^3.0.11",
"@vue/vue3-jest": "^29.2.6",
"babel-jest": "^29.7.0",
"babel-preset-solid": "^1.8.4",
"eslint": "^9.7.0",
"globals": "^15.8.0",
"husky": "^3.1.0",
"jest": "^29.7.0",
"jest-config": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-resolve": "^29.7.0",
"jest-snapshot": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"knip": "^5.27.0",
"lint-staged": "^8.2.1",
"prettier": "^3.1.0",
"prettier-plugin-jsdoc": "^1.3.0",
"svelte-jester": "^2.3.2",
"synckit": "^0.8.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0",
"vue": "^3.0.11"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md,mdx}": [
"prettier --write",
"git add"
]
},
"pnpm": {
"patchedDependencies": {
"@vue/[email protected]": "patches/@[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]"
}
},
"packageManager": "[email protected]+sha512.faf344af2d6ca65c4c5c8c2224ea77a81a5e8859cbc4e06b1511ddce2f0151512431dd19e6aff31f2c6a8f5f2aced9bd2273e1fed7dd4de1868984059d2c4247"
}