package.json 824 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "@briven/client",
  3. "version": "0.0.1",
  4. "description": "Framework-agnostic JavaScript client for briven",
  5. "license": "MIT",
  6. "type": "module",
  7. "exports": {
  8. ".": {
  9. "types": "./src/index.ts",
  10. "default": "./src/index.ts"
  11. }
  12. },
  13. "files": [
  14. "dist",
  15. "src"
  16. ],
  17. "scripts": {
  18. "build": "tsc -p tsconfig.json",
  19. "lint": "eslint . --max-warnings 0",
  20. "typecheck": "tsc --noEmit"
  21. },
  22. "dependencies": {
  23. "@briven/config": "workspace:*",
  24. "@briven/shared": "workspace:*"
  25. },
  26. "devDependencies": {
  27. "typescript": "^6.0.3"
  28. },
  29. "publishConfig": {
  30. "access": "public"
  31. },
  32. "repository": {
  33. "type": "git",
  34. "url": "git+https://code.konnos.org/flndrn/briven.git",
  35. "directory": "packages/client-vanilla"
  36. },
  37. "homepage": "https://docs.briven.tech"
  38. }