package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "@novu/headless",
  3. "version": "0.24.0",
  4. "repository": "https://github.com/novuhq/novu",
  5. "description": "Headless client package that is a thin abstraction layer over the API client + state and socket management",
  6. "keywords": [],
  7. "license": "MIT",
  8. "main": "dist/index.js",
  9. "types": "dist/index.d.ts",
  10. "files": [
  11. "dist"
  12. ],
  13. "scripts": {
  14. "start": "npm run start:dev",
  15. "start:dev": "npm run watch:build",
  16. "build": "cross-env node_modules/.bin/tsc -p tsconfig.build.json",
  17. "lint": "eslint src --ext .ts",
  18. "fix": "run-s fix:*",
  19. "fix:prettier": "prettier \"src/**/*.ts\" --write",
  20. "fix:lint": "eslint src --ext .ts --fix",
  21. "test": "jest",
  22. "test:watch": "jest --watch"
  23. },
  24. "publishConfig": {
  25. "access": "public"
  26. },
  27. "engines": {
  28. "node": ">=10"
  29. },
  30. "dependencies": {
  31. "@novu/client": "^0.24.0",
  32. "@novu/shared": "^0.24.0",
  33. "@tanstack/query-core": "^4.15.1",
  34. "socket.io-client": "4.7.2"
  35. },
  36. "devDependencies": {
  37. "@babel/preset-env": "^7.23.2",
  38. "@babel/preset-typescript": "^7.13.0",
  39. "@types/jest": "^29.2.3",
  40. "@types/node": "^14.6.0",
  41. "jest": "^29.3.1",
  42. "jest-environment-jsdom": "^29.3.1",
  43. "ts-jest": "^29.0.3",
  44. "typedoc": "^0.24.0",
  45. "typescript": "4.9.5"
  46. },
  47. "prettier": {
  48. "singleQuote": true
  49. },
  50. "gitHead": "5d584beb283b5cd4fcb59b0aa8e4a74ac3ef9bbf"
  51. }