package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "@joystream/types",
  3. "version": "0.12.0",
  4. "description": "Types for Joystream Substrate Runtime - nicaea release",
  5. "main": "index.js",
  6. "types": "index.d.ts",
  7. "scripts": {
  8. "prepublish": "npm run build",
  9. "build": "tsc --build tsconfig.json",
  10. "lint": "eslint ./ --quiet --ext .ts",
  11. "format": "prettier ./ --write",
  12. "checks": "yarn build && madge --circular ./ && yarn lint && prettier ./ --check"
  13. },
  14. "author": "Joystream contributors",
  15. "maintainers": [],
  16. "dependencies": {
  17. "@polkadot/types": "^0.96.1",
  18. "@polkadot/keyring": "^1.7.0-beta.5",
  19. "@types/lodash": "^4.14.157",
  20. "@types/vfile": "^4.0.0",
  21. "ajv": "^6.11.0",
  22. "lodash": "^4.17.15",
  23. "moment": "^2.24.0"
  24. },
  25. "devDependencies": {
  26. "typescript": "^3.7.2"
  27. },
  28. "engines": {
  29. "node": ">=12.18.0",
  30. "yarn": "^1.22.0"
  31. },
  32. "publishConfig": {
  33. "access": "public",
  34. "registry": "https://registry.npmjs.org"
  35. },
  36. "repository": {
  37. "type": "git",
  38. "url": "git+https://github.com/Joystream/joystream.git"
  39. },
  40. "keywords": [
  41. "substrate",
  42. "joystream",
  43. "runtime"
  44. ],
  45. "license": "GPLv3",
  46. "bugs": {
  47. "url": "https://github.com/Joystream/joystream/issues"
  48. },
  49. "homepage": "https://github.com/Joystream/joystream"
  50. }