@toriistudio/v0-playground
Version:
112 lines (111 loc) • 2.85 kB
JSON
{
"name": "@toriistudio/v0-playground",
"version": "0.7.3",
"description": "V0 Playground",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/index.cjs"
}
},
"./preset": {
"import": "./dist/preset.mjs",
"require": "./dist/preset.js"
},
"./styles.css": "./dist/index.css"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"local:push": "yarn build && yalc push",
"release:patch": "npm version patch && git push --follow-tags && npm publish",
"release:minor": "npm version minor && git push --follow-tags && npm publish",
"release:major": "npm version major && git push --follow-tags && npm publish",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toriistudio/v0-playground.git"
},
"keywords": [
"react",
"component",
"headless"
],
"author": "toriistudio",
"license": "MIT",
"bugs": {
"url": "https://github.com/toriistudio/v0-playground/issues"
},
"homepage": "https://github.com/toriistudio/v0-playground#readme",
"peerDependencies": {
"react": ">=18 <20",
"react-dom": ">=18 <20",
"@radix-ui/react-label": "^2.1.6",
"@radix-ui/react-select": "^2.2.4",
"@radix-ui/react-slider": "^1.3.4",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lodash": "^4.17.21",
"lucide-react": "^0.522.0",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@radix-ui/react-label": "^2.1.6",
"@radix-ui/react-select": "^2.2.4",
"@radix-ui/react-slider": "^1.3.4",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.4",
"@types/lodash": "^4.17.19",
"@types/node": "^24.0.3",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lodash": "^4.17.21",
"lucide-react": "^0.522.0",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.10",
"tailwindcss-animate": "^1.0.7",
"tsup": "^8.4.0",
"typescript": "^5.8.3"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"tsup": {
"entry": [
"src/index.ts"
],
"dts": true,
"format": [
"cjs",
"esm"
],
"sourcemap": true,
"clean": true,
"external": [
"react",
"react-dom"
]
}
}