@wallet-ui/tailwind
Version:
Tailwind CSS for Wallet UI
80 lines • 3.09 kB
JSON
{
"name": "@wallet-ui/tailwind",
"version": "4.2.1",
"description": "Tailwind CSS for Wallet UI",
"exports": {
".": {
"edge-light": {
"import": "./dist/index.node.mjs",
"require": "./dist/index.node.cjs"
},
"workerd": {
"import": "./dist/index.node.mjs",
"require": "./dist/index.node.cjs"
},
"browser": {
"import": "./dist/index.browser.mjs",
"require": "./dist/index.browser.cjs"
},
"node": {
"import": "./dist/index.node.mjs",
"require": "./dist/index.node.cjs"
},
"react-native": "./dist/index.native.mjs",
"types": "./dist/types/index.d.ts"
},
"./index.css": "./dist/index.css"
},
"browser": {
"./dist/index.node.cjs": "./dist/index.browser.cjs",
"./dist/index.node.mjs": "./dist/index.browser.mjs"
},
"main": "./dist/index.node.cjs",
"module": "./dist/index.node.mjs",
"react-native": "./dist/index.native.mjs",
"types": "./dist/types/index.d.ts",
"type": "commonjs",
"files": [
"./dist/"
],
"sideEffects": false,
"keywords": [
"blockchain",
"solana",
"web3"
],
"author": "beeman <beeman@beeman.nl>",
"homepage": "https://wallet-ui.dev",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wallet-ui/wallet-ui"
},
"bugs": {
"url": "https://github.com/wallet-ui/wallet-ui/issues"
},
"browserslist": [
"supports bigint and not dead",
"maintained node versions"
],
"peerDependencies": {
"tailwindcss": "^4.2.2"
},
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"compile:js": "tsup --config build-scripts/tsup.config.package.ts",
"compile:typedefs": "tsc -p ./tsconfig.declarations.json",
"compile:css": "tailwindcss -i ./src/index.css -o ../react/src/index.css",
"dev": "vitest -c ../../node_modules/@wallet-ui/test-config/vitest.config.mjs --root . --watch",
"publish-impl": "npm view $npm_package_name@$npm_package_version > /dev/null 2>&1 || (pnpm publish --tag ${PUBLISH_TAG:-canary} --access public --no-git-checks && (([ -n \"${GITHUB_OUTPUT:-}\" ] && echo 'published=true' >> \"$GITHUB_OUTPUT\") || true) && (([ \"$PUBLISH_TAG\" != \"canary\" ] && ../build-scripts/maybe-tag-latest.ts --token \"$GITHUB_TOKEN\" $npm_package_name@$npm_package_version) || true))",
"publish-packages": "pnpm prepublishOnly && pnpm publish-impl",
"test:treeshakability:browser": "true # agadoo dist/index.browser.mjs",
"test:treeshakability:native": "true # agadoo dist/index.native.mjs",
"test:treeshakability:node": "true # agadoo dist/index.node.mjs",
"test:typecheck": "tsc --noEmit",
"test:unit:browser": "TERM_OVERRIDE=\"${TURBO_HASH:+dumb}\" TERM=${TERM_OVERRIDE:-$TERM} vitest -c ../../node_modules/@wallet-ui/test-config/vitest.config.browser.mjs --root . --run --silent",
"test:unit:node": "TERM_OVERRIDE=\"${TURBO_HASH:+dumb}\" TERM=${TERM_OVERRIDE:-$TERM} vitest -c ../../node_modules/@wallet-ui/test-config/vitest.config.node.mjs --root . --run --silent"
}
}