-
-
Notifications
You must be signed in to change notification settings - Fork 253
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.06 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.06 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
{
"name": "@zag-js/core",
"version": "1.21.7",
"description": "A minimal implementation of xstate fsm for UI machines",
"keywords": [
"ui-machines",
"state-machines",
"zag",
"fsm",
"xstate",
"finite state machine"
],
"author": "Segun Adebayo <sage@adebayosegun.com>",
"homepage": "https://github.com/chakra-ui/zag#readme",
"license": "MIT",
"repository": "https://github.com/chakra-ui/zag/tree/main/packages/machine",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "vitest --passWithNoTests",
"lint": "eslint src",
"typecheck": "tsc --noEmit",
"prepack": "clean-package",
"postpack": "clean-package restore"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/chakra-ui/zag/issues"
},
"dependencies": {
"@zag-js/utils": "workspace:*",
"@zag-js/dom-query": "workspace:*"
},
"devDependencies": {
"clean-package": "2.2.0"
},
"clean-package": "../../clean-package.config.json",
"main": "src/index.ts"
}