Files
wdi-dashboard/node_modules/@chakra-ui/theme-tools/package.json

70 lines
1.6 KiB
JSON
Raw Normal View History

2024-08-16 15:06:52 +05:30
{
"name": "@chakra-ui/theme-tools",
"version": "2.1.2",
"description": "Set of helpers that makes theming and styling easier",
"keywords": [
"theme",
"theming",
"color",
"utilities"
],
"sideEffects": false,
"author": "Segun Adebayo <sage@adebayosegun.com>",
"homepage": "https://github.com/chakra-ui/chakra-ui#readme",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chakra-ui/chakra-ui.git",
"directory": "packages/components/theme-tools"
},
"bugs": {
"url": "https://github.com/chakra-ui/chakra-ui/issues"
},
"dependencies": {
"color2k": "^2.0.2",
"@chakra-ui/anatomy": "2.2.2",
"@chakra-ui/shared-utils": "2.0.5"
},
"peerDependencies": {
"@chakra-ui/styled-system": ">=2.0.0"
},
"devDependencies": {
"@types/dlv": "^1.1.2",
"clean-package": "2.2.0",
"dlv": "^1.1.3",
"@chakra-ui/styled-system": "2.9.2"
},
"clean-package": "../../../clean-package.config.json",
"tsup": {
"format": [
"cjs",
"esm"
],
"target": "es2019",
"sourcemap": true
},
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsup src --dts",
"dev": "pnpm build:fast -- --watch",
"clean": "rimraf dist .turbo",
"typecheck": "tsc --noEmit",
"build:fast": "tsup src"
}
}