|
| 1 | +{ |
| 2 | + "name": "@fictjs/tabs", |
| 3 | + "version": "0.1.0", |
| 4 | + "description": "Tabs primitives for Fict UI primitives.", |
| 5 | + "license": "MIT", |
| 6 | + "type": "module", |
| 7 | + "sideEffects": false, |
| 8 | + "main": "./dist/index.cjs", |
| 9 | + "module": "./dist/index.js", |
| 10 | + "types": "./dist/index.d.ts", |
| 11 | + "exports": { |
| 12 | + ".": { |
| 13 | + "types": "./dist/index.d.ts", |
| 14 | + "import": "./dist/index.js", |
| 15 | + "require": "./dist/index.cjs" |
| 16 | + } |
| 17 | + }, |
| 18 | + "files": [ |
| 19 | + "dist", |
| 20 | + "README.md" |
| 21 | + ], |
| 22 | + "engines": { |
| 23 | + "node": ">=22.13.0" |
| 24 | + }, |
| 25 | + "publishConfig": { |
| 26 | + "access": "public", |
| 27 | + "provenance": true |
| 28 | + }, |
| 29 | + "keywords": [ |
| 30 | + "fict", |
| 31 | + "radix", |
| 32 | + "tabs", |
| 33 | + "ui-primitives" |
| 34 | + ], |
| 35 | + "repository": { |
| 36 | + "type": "git", |
| 37 | + "url": "git+https://github.com/fictjs/ui-primitives.git", |
| 38 | + "directory": "packages/tabs" |
| 39 | + }, |
| 40 | + "scripts": { |
| 41 | + "build": "tsup", |
| 42 | + "clean": "rimraf coverage dist", |
| 43 | + "dev": "tsup --watch", |
| 44 | + "lint": "eslint . --max-warnings=0", |
| 45 | + "lint:fix": "eslint . --fix", |
| 46 | + "test": "vitest run --config ./vitest.config.ts", |
| 47 | + "test:coverage": "vitest run --config ./vitest.config.ts --coverage", |
| 48 | + "test:watch": "vitest --config ./vitest.config.ts", |
| 49 | + "typecheck": "tsc --noEmit -p tsconfig.json" |
| 50 | + }, |
| 51 | + "dependencies": { |
| 52 | + "@fictjs/context": "workspace:*", |
| 53 | + "@fictjs/core-primitive": "workspace:*", |
| 54 | + "@fictjs/direction": "workspace:*", |
| 55 | + "@fictjs/id": "workspace:*", |
| 56 | + "@fictjs/presence": "workspace:*", |
| 57 | + "@fictjs/primitive": "workspace:*", |
| 58 | + "@fictjs/roving-focus": "workspace:*", |
| 59 | + "@fictjs/use-controllable-state": "workspace:*", |
| 60 | + "@fictjs/use-layout-effect": "workspace:*" |
| 61 | + }, |
| 62 | + "peerDependencies": { |
| 63 | + "@fictjs/runtime": ">=0.17.0" |
| 64 | + }, |
| 65 | + "devDependencies": { |
| 66 | + "@fictjs/runtime": "catalog:", |
| 67 | + "jsdom": "catalog:" |
| 68 | + } |
| 69 | +} |
0 commit comments