forked from statelyai/xstate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.6 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.6 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
{
"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": "vitest run",
"test:watch": "vitest",
"test:core": "vitest run --project xstate",
"test:core:watch": "vitest --project xstate",
"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 <davidkpiano@gmail.com>",
"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.5.1",
"@changesets/cli": "^2.29.5",
"@eslint/js": "^9.26.0",
"@manypkg/cli": "^0.21.4",
"@preconstruct/cli": "^2.8.1",
"@types/node": "^20.14.13",
"babel-preset-solid": "^1.8.4",
"eslint": "^9.26.0",
"eslint-plugin-jsdoc": "^50.6.14",
"globals": "^15.8.0",
"happy-dom": "^17.4.4",
"husky": "^3.1.0",
"knip": "^5.27.0",
"lint-staged": "^8.2.1",
"prettier": "^3.1.0",
"prettier-plugin-jsdoc": "^1.3.0",
"synckit": "^0.8.5",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1",
"vitest": "^3.2.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md,mdx}": [
"prettier --write",
"git add"
]
},
"pnpm": {
"patchedDependencies": {
"@vue/test-utils@2.4.6": "patches/@vue__test-utils@2.4.6.patch"
}
},
"packageManager": "pnpm@9.15.9+sha512.68046141893c66fad01c079231128e9afb89ef87e2691d69e4d40eee228988295fd4682181bae55b58418c3a253bde65a505ec7c5f9403ece5cc3cd37dcf2531"
}