@tachui/modifiers
Version:
Essential styling modifiers for tachUI framework
117 lines • 3.01 kB
JSON
{
"name": "@tachui/modifiers",
"version": "0.8.1-alpha",
"description": "Essential styling modifiers for tachUI framework",
"homepage": "https://tachui.dev/",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./base": {
"types": "./dist/base.d.ts",
"import": "./dist/base.js"
},
"./types": {
"types": "./dist/types.d.ts",
"import": "./dist/types.js"
},
"./basic/padding": {
"types": "./dist/basic/padding.d.ts",
"import": "./dist/basic/padding.js"
},
"./basic/margin": {
"types": "./dist/basic/margin.d.ts",
"import": "./dist/basic/margin.js"
},
"./basic/size": {
"types": "./dist/basic/size.d.ts",
"import": "./dist/basic/size.js"
},
"./typography/text": {
"types": "./dist/typography/text.d.ts",
"import": "./dist/typography/text.js"
},
"./layout": {
"types": "./dist/layout/index.d.ts",
"import": "./dist/layout/index.js"
},
"./typography": {
"types": "./dist/typography/index.d.ts",
"import": "./dist/typography/index.js"
},
"./appearance": {
"types": "./dist/appearance/index.d.ts",
"import": "./dist/appearance/index.js"
},
"./interaction": {
"types": "./dist/interaction/index.d.ts",
"import": "./dist/interaction/index.js"
},
"./utility": {
"types": "./dist/utility/index.d.ts",
"import": "./dist/utility/index.js"
}
},
"files": [
"dist"
],
"dependencies": {
"@tachui/core": "0.8.1-alpha"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/jsdom": "^21.1.6",
"@vitest/coverage-v8": "^3.2.4",
"jsdom": "^23.2.0",
"typescript": "^5.8.0",
"vite": "^7.1.1",
"vitest": "^3.2.4"
},
"peerDependencies": {
"typescript": ">=5.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"keywords": [
"ui",
"modifiers",
"styling",
"tachui",
"typescript"
],
"author": "tachUI Team",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/tach-UI/tachUI",
"directory": "packages/modifiers"
},
"bugs": "https://github.com/tach-UI/tachUI/issues",
"engines": {
"node": ">=20.0.0"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rm -rf dist && vite build --mode production && tsc --project tsconfig.build.json --emitDeclarationOnly",
"dev": "vite build --watch",
"valid": "clear && vitest run && pnpm type-check && pnpm lint && pnpm build",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"test:ci": "vitest run",
"type-check": "tsc --project tsconfig.type-check.json",
"clean": "rm -rf dist",
"lint": "oxlint src"
}
}