-
-
Notifications
You must be signed in to change notification settings - Fork 253
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.32 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.32 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
{
"name": "@zag-js/solid",
"version": "1.21.7",
"description": "The solid.js wrapper for zag",
"keywords": [
"ui-machines",
"state-machines",
"zag",
"solid",
"use-machine",
"hook"
],
"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/frameworks/solid",
"sideEffects": false,
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/chakra-ui/zag/issues"
},
"dependencies": {
"@solid-primitives/keyed": "^1.5.2",
"@zag-js/utils": "workspace:*",
"@zag-js/core": "workspace:*",
"@zag-js/store": "workspace:*",
"@zag-js/types": "workspace:*"
},
"devDependencies": {
"@types/jsdom": "^21.1.7",
"solid-js": "1.9.9",
"clean-package": "2.2.0",
"@solidjs/testing-library": "^0.8.10",
"@testing-library/jest-dom": "^6.7.0",
"jsdom": "^26.1.0"
},
"peerDependencies": {
"solid-js": ">=1.1.3"
},
"scripts": {
"build": "tsup",
"lint": "eslint src",
"typecheck": "tsc --noEmit",
"prepack": "clean-package",
"postpack": "clean-package restore"
},
"clean-package": "../../../clean-package.config.json",
"main": "src/index.ts"
}