package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "@joystream/types",
  3. "version": "0.13.0",
  4. "description": "Types for Joystream Substrate Runtime - Alexandria 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. "generate:defs": "ts-node node_modules/.bin/polkadot-types-from-defs --package ./src --input ./src/definitions",
  14. "update:augment-types": "tsc --build tsconfig-scripts.json && node ./src/scripts/updateAugmentTypes.js",
  15. "print:typedef": "tsc --build tsconfig-scripts.json && node ./src/scripts/defsFromTypes.js"
  16. },
  17. "author": "Joystream contributors",
  18. "maintainers": [],
  19. "dependencies": {
  20. "@polkadot/api": "1.26.1",
  21. "@polkadot/types": "1.26.1",
  22. "@polkadot/keyring": "3.0.1",
  23. "@types/lodash": "^4.14.157",
  24. "@types/vfile": "^4.0.0",
  25. "ajv": "^6.11.0",
  26. "lodash": "^4.17.15",
  27. "moment": "^2.24.0"
  28. },
  29. "devDependencies": {
  30. "@polkadot/typegen": "1.26.1",
  31. "ts-node": "^8.6.2",
  32. "typescript": "^3.7.2"
  33. },
  34. "engines": {
  35. "node": ">=12.18.0",
  36. "yarn": "^1.22.0"
  37. },
  38. "publishConfig": {
  39. "access": "public",
  40. "registry": "https://registry.npmjs.org"
  41. },
  42. "repository": {
  43. "type": "git",
  44. "url": "git+https://github.com/Joystream/joystream.git"
  45. },
  46. "keywords": [
  47. "substrate",
  48. "joystream",
  49. "runtime"
  50. ],
  51. "license": "GPL-3.0-only",
  52. "bugs": {
  53. "url": "https://github.com/Joystream/joystream/issues"
  54. },
  55. "homepage": "https://github.com/Joystream/joystream"
  56. }