package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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": ">=10.0"
  30. },
  31. "publishConfig": {
  32. "access": "public",
  33. "registry": "https://registry.npmjs.org"
  34. },
  35. "repository": {
  36. "type": "git",
  37. "url": "git+https://github.com/Joystream/joystream.git"
  38. },
  39. "keywords": [
  40. "substrate",
  41. "joystream",
  42. "runtime"
  43. ],
  44. "license": "Apache-2.0",
  45. "bugs": {
  46. "url": "https://github.com/Joystream/joystream/issues"
  47. },
  48. "homepage": "https://github.com/Joystream/joystream"
  49. }