@wise/components-theming
Version:
Provides theming support for the Wise Design system components
80 lines • 2.31 kB
JSON
{
"name": "@wise/components-theming",
"version": "1.7.0",
"description": "Provides theming support for the Wise Design system components",
"license": "Apache-2.0",
"keywords": [
"wise"
],
"repository": {
"type": "git",
"fullname": "transferwise/neptune-web",
"url": "git+https://github.com/transferwise/neptune-web.git"
},
"dependencies": {
"@babel/runtime": "^7.28.3",
"clsx": "^2.1.1"
},
"devDependencies": {
"@babel/core": "^7.28.3",
"@babel/plugin-transform-runtime": "^7.28.3",
"@babel/preset-env": "^7.28.3",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-typescript": "^12.1.4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@tsconfig/recommended": "^1.0.10",
"@types/babel__core": "^7.20.5",
"@types/jest": "^30.0.0",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"@wise/eslint-config": "^13.1.0",
"eslint": "^9.33.0",
"jest": "^30.0.5",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^4.47.1",
"rollup-preserve-directives": "^1.1.3",
"@wise/wds-configs": "0.0.0"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"sideEffects": [
"*.css"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist/",
"src/",
"!**/*.tsbuildinfo"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rollup --config --sourcemap",
"test": "jest",
"test:watch": "jest --watch",
"lint": "pnpm run lint:check",
"lint:check": "npm-run-all --parallel lint:check:*",
"lint:check:format": "prettier --check --ignore-path ../../.prettierignore .",
"lint:check:js+ts": "eslint .",
"lint:check:types": "tsc --noEmit --emitDeclarationOnly false",
"lint:fix": "npm-run-all --serial lint:fix:*",
"lint:fix:format": "prettier --write --ignore-path ../../.prettierignore .",
"lint:fix:js+ts": "pnpm run lint:check:js+ts --fix"
}
}