@tachui/primitives
Version:
Basic UI components for tachUI framework
82 lines • 2.05 kB
JSON
{
"name": "@tachui/primitives",
"version": "0.8.1-alpha",
"description": "Basic UI components 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"
},
"./layout": {
"types": "./dist/layout/index.d.ts",
"import": "./dist/layout/index.js"
},
"./display": {
"types": "./dist/display/index.d.ts",
"import": "./dist/display/index.js"
},
"./controls": {
"types": "./dist/controls/index.d.ts",
"import": "./dist/controls/index.js"
},
"./forms": {
"types": "./dist/forms/index.d.ts",
"import": "./dist/forms/index.js"
}
},
"files": [
"dist"
],
"dependencies": {
"@tachui/core": "0.8.1-alpha",
"@tachui/modifiers": "0.8.1-alpha"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/jsdom": "^21.1.6",
"@vitest/coverage-v8": "^1.0.0",
"jsdom": "^23.2.0",
"typescript": "^5.2.0",
"vite": "^7.1.1",
"vitest": "^3.2.4"
},
"peerDependencies": {
"typescript": ">=5.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"keywords": [
"ui",
"components",
"primitives",
"tachui",
"typescript"
],
"author": "tachUI Team",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/tach-UI/tachUI",
"directory": "packages/primitives"
},
"scripts": {
"build": "rm -rf dist && vite build && tsc --project tsconfig.build.json",
"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": "npm run test:run",
"type-check": "tsc --project tsconfig.type-check.json",
"clean": "rm -rf dist",
"lint": "oxlint src"
}
}