Files
zitadel/packages/zitadel-react/package.json

49 lines
1.2 KiB
JSON
Raw Normal View History

2023-04-03 11:45:27 +02:00
{
2023-04-03 15:38:50 +02:00
"name": "@zitadel/react",
2023-04-03 11:45:27 +02:00
"version": "0.0.0",
"types": "./dist/index.d.ts",
2023-04-14 13:35:27 +02:00
"sideEffects": [
"**/*.css"
2023-04-03 11:45:27 +02:00
],
2023-04-14 13:35:27 +02:00
"license": "MIT",
"exports": {
2024-05-16 03:02:22 -04:00
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
2023-04-14 13:35:27 +02:00
"./styles.css": "./dist/index.css",
"./assets/*": "./dist/assets/*"
},
2023-04-03 11:45:27 +02:00
"scripts": {
2024-05-16 03:02:22 -04:00
"build": "tsup",
2023-06-16 01:36:19 +02:00
"test": "pnpm test:unit",
"test:watch": "pnpm test:unit:watch",
2024-05-16 03:02:22 -04:00
"test:unit": "vitest",
"test:unit:watch": "vitest --watch",
2023-04-14 13:35:27 +02:00
"dev": "tsup --watch",
2023-04-03 11:45:27 +02:00
"lint": "eslint \"src/**/*.ts*\"",
2023-04-14 14:35:21 +02:00
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"copy-files": "cp -R ./src/public/ ./dist/"
2023-04-03 11:45:27 +02:00
},
"devDependencies": {
2024-05-16 03:02:22 -04:00
"@testing-library/jest-dom": "^6.4.5",
2023-05-25 23:31:43 +02:00
"@testing-library/react": "^14.0.0",
"@types/react": "^18.2.17",
"@types/react-dom": "^18.2.7",
2023-04-03 11:45:27 +02:00
"@zitadel/tsconfig": "workspace:*",
2023-05-22 11:48:18 +02:00
"autoprefixer": "10.4.13",
2023-04-03 11:45:27 +02:00
"eslint-config-zitadel": "workspace:*",
2024-05-16 03:02:22 -04:00
"jsdom": "^24.0.0",
2023-04-14 13:35:27 +02:00
"postcss": "8.4.21",
2024-05-16 03:02:22 -04:00
"sass": "^1.77.1",
2023-04-14 13:35:27 +02:00
"tailwindcss": "3.2.4",
2023-05-22 11:48:18 +02:00
"zitadel-tailwind-config": "workspace:*"
2023-04-03 11:45:27 +02:00
},
"publishConfig": {
"access": "public"
2023-04-14 13:35:27 +02:00
},
"peerDependencies": {
2023-07-18 13:58:33 +02:00
"react": "18.2.0"
2023-04-03 11:45:27 +02:00
}
2023-07-17 17:14:02 +02:00
}