67 lines
1.6 KiB
JSON
67 lines
1.6 KiB
JSON
{
|
|
"name": "@rythazhur/mizan",
|
|
"version": "0.1.1",
|
|
"license": "Elastic-2.0",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
},
|
|
"./client": {
|
|
"types": "./dist/client/index.d.ts",
|
|
"import": "./dist/client/index.js"
|
|
},
|
|
"./client/react": {
|
|
"types": "./dist/client/react.d.ts",
|
|
"import": "./dist/client/react.js"
|
|
},
|
|
"./channels": {
|
|
"types": "./dist/channels/index.d.ts",
|
|
"import": "./dist/channels/index.js"
|
|
},
|
|
"./jwt": {
|
|
"types": "./dist/jwt/index.d.ts",
|
|
"import": "./dist/jwt/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.build.json",
|
|
"dev": "tsc -p tsconfig.build.json --watch",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"test:integration": "RUN_INTEGRATION_TESTS=true NEXT_PUBLIC_HOST_URL=http://localhost:8000 vitest run",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"peerDependencies": {
|
|
"react": ">=18",
|
|
"react-dom": ">=18"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"next": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"ws": "^8.19.0"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.58.2",
|
|
"@simplewebauthn/browser": "^13.2.2",
|
|
"@testing-library/jest-dom": "^6.0.0",
|
|
"@testing-library/react": "^16.0.0",
|
|
"@types/react": "^19.0.0",
|
|
"@types/react-dom": "^19.0.0",
|
|
"@types/ws": "^8.5.0",
|
|
"jsdom": "^25.0.0",
|
|
"next": "^16.1.6",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0",
|
|
"typescript": "^5.7.0",
|
|
"vitest": "^3.0.0",
|
|
"zod": "^4.3.6"
|
|
}
|
|
}
|