This repository was archived by the owner on Sep 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
48 lines (48 loc) · 1.49 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
{
"name": "@chakra-ui/c-checkbox",
"description": "Chakra UI Vue | C checkbox component is used in forms when a user needs to select multiple values from several options component",
"version": "2.1.0-beta.11",
"main": "./index.ts",
"clean-package": "../../clean-package.config.json",
"author": "Jonathan Bakebwa <[email protected]>",
"homepage": "https://github.com/chakra-ui/chakra-ui-vue-next#readme",
"license": "MIT",
"files": [
"dist"
],
"repository": "https://github.com/chakra-ui/chakra-ui-vue-next/tree/master/packages/c-checkbox",
"bugs": {
"url": "https://github.com/chakra-ui/chakra-ui-vue-next/issues"
},
"sideEffects": false,
"scripts": {
"clean": "rimraf dist .turbo",
"build": "tsup && pnpm build:types",
"build:fast": "tsup",
"types:check": "tsc --noEmit",
"replace-config": "clean-package",
"backup-config": "clean-package restore",
"build:types": "tsup src --dts-only"
},
"dependencies": {
"@chakra-ui/c-form-control": "workspace:*",
"@chakra-ui/c-motion": "workspace:*",
"@chakra-ui/styled-system": "2.9.1",
"@chakra-ui/utils": "2.0.15",
"@chakra-ui/vue-composables": "workspace:*",
"@chakra-ui/vue-system": "workspace:*",
"@chakra-ui/vue-utils": "workspace:*",
"@vueuse/motion": "^1.6.0",
"@zag-js/checkbox": "0.6.0",
"@zag-js/vue": "0.6.0"
},
"devDependencies": {
"vue": "3.2.47"
},
"peerDependencies": {
"vue": "3.2.47"
},
"publishConfig": {
"access": "public"
}
}