mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 03:03:24 +00:00
37 lines
944 B
JSON
37 lines
944 B
JSON
{
|
|
"name": "@zitadel/next",
|
|
"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",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"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": {
|
|
"@types/jest": "^29.5.1",
|
|
"@zitadel/tsconfig": "workspace:*",
|
|
"eslint": "^7.32.0",
|
|
"eslint-config-zitadel": "workspace:*",
|
|
"jest": "^29.5.0",
|
|
"ts-jest": "^29.1.0",
|
|
"ts-node": "^10.9.1",
|
|
"tsup": "^5.10.1",
|
|
"typescript": "^4.9.3"
|
|
},
|
|
"peerDependencies": {
|
|
"next": "^13"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
} |