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

39 lines
1.0 KiB
JSON
Raw Normal View History

2023-04-03 11:45:27 +02:00
{
2023-04-03 15:38:50 +02:00
"name": "@zitadel/next",
2023-04-03 11:45:27 +02:00
"version": "0.0.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"sideEffects": false,
"license": "MIT",
"files": [
"dist/**"
],
"scripts": {
"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-03 11:45:27 +02:00
"dev": "tsup src/index.tsx --format esm,cjs --watch --dts --external react",
"lint": "eslint \"src/**/*.ts*\"",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
},
"devDependencies": {
2023-05-25 16:19:58 +02:00
"@types/jest": "^29.5.1",
2023-04-03 11:45:27 +02:00
"@zitadel/tsconfig": "workspace:*",
"eslint": "^7.32.0",
"eslint-config-zitadel": "workspace:*",
2023-05-25 16:19:58 +02:00
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
2023-05-25 17:11:36 +02:00
"ts-node": "^10.9.1",
2023-04-03 11:45:27 +02:00
"tsup": "^5.10.1",
2023-05-25 16:19:58 +02:00
"typescript": "^4.9.3"
2023-04-03 11:45:27 +02:00
},
2023-04-03 15:38:50 +02:00
"peerDependencies": {
"next": "^13"
},
2023-04-03 11:45:27 +02:00
"publishConfig": {
"access": "public"
}
2023-05-25 17:11:36 +02:00
}