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

54 lines
1.4 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": {
".": "./dist",
"./styles.css": "./dist/index.css",
"./assets/*": "./dist/assets/*"
},
2023-04-03 11:45:27 +02:00
"scripts": {
2023-08-02 10:15:21 +02:00
"build": "tsup src/index.tsx --format esm,cjs --dts --external react",
2023-06-16 01:36:19 +02:00
"test": "pnpm test:unit",
"test:watch": "pnpm test:unit:watch",
"test:unit": "jest",
"test:unit:watch": "jest --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": {
2023-05-25 23:31:43 +02:00
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
2023-05-25 16:19:58 +02:00
"@types/jest": "^29.5.1",
"@types/react": "^18.2.17",
"@types/react-dom": "^18.2.7",
2023-05-25 23:31:43 +02:00
"@types/testing-library__jest-dom": "^5.14.6",
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": "^7.32.0",
"eslint-config-zitadel": "workspace:*",
2023-05-25 16:19:58 +02:00
"jest": "^29.5.0",
2023-05-25 23:31:43 +02:00
"jest-environment-jsdom": "^29.5.0",
2023-04-14 13:35:27 +02:00
"postcss": "8.4.21",
"sass": "^1.62.0",
"tailwindcss": "3.2.4",
2023-05-25 16:19:58 +02:00
"ts-jest": "^29.1.0",
2023-05-25 17:11:36 +02:00
"ts-node": "^10.9.1",
2023-07-28 15:23:17 +02:00
"tsup": "^7.1.0",
"typescript": "^5.1.6",
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
}