12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- {
- "name": "@joystream/types",
- "version": "0.16.1",
- "description": "Types for Joystream Substrate Runtime - Sumer release",
- "main": "index.js",
- "types": "index.d.ts",
- "scripts": {
- "prepublish": "npm run build",
- "build": "tsc --build tsconfig.json",
- "lint": "eslint ./ --ext .ts",
- "format": "prettier ./ --write",
- "check:augment": "tsc --build tsconfig-augment.json && tsc --build tsconfig-augment-codec.json",
- "checks": "yarn build && madge --circular ./ && prettier ./ --check && yarn check:augment && yarn lint",
- "generate:defs": "ts-node node_modules/.bin/polkadot-types-from-defs --package . --input ./augment",
- "generate:meta": "ts-node node_modules/.bin/polkadot-types-from-chain --package . --endpoint ws://127.0.0.1:9944 --output ./augment --strict",
- "generate:augment-codec": "ts-node ./src/scripts/generateAugmentCodec.ts",
- "generate:registry-json": "ts-node ./src/scripts/generateRegistryJson.ts",
- "generate:augment": "yarn generate:registry-json && yarn generate:defs && yarn generate:meta",
- "generate:all": "yarn generate:augment && yarn generate:augment-codec",
- "generate:json-schemas": "json2ts -i ./src/hiring/schemas/role.schema.json -o ./src/hiring/schemas/role.schema.typings.ts"
- },
- "author": "Joystream contributors",
- "maintainers": [],
- "dependencies": {
- "@polkadot/api": "4.2.1",
- "@polkadot/types": "4.2.1",
- "@polkadot/keyring": "^6.0.5",
- "@types/lodash": "^4.14.157",
- "@types/vfile": "^4.0.0",
- "ajv": "^6.11.0",
- "lodash": "^4.17.15",
- "moment": "^2.24.0"
- },
- "devDependencies": {
- "@polkadot/typegen": "4.2.1",
- "ts-node": "^8.6.2",
- "typescript": "^3.7.2",
- "madge": "^3.9.2",
- "json-schema-to-typescript": "^9.1.1"
- },
- "engines": {
- "node": ">=14.0.0",
- "yarn": "^1.22.0"
- },
- "publishConfig": {
- "access": "public",
- "registry": "https://registry.npmjs.org"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/Joystream/joystream.git"
- },
- "keywords": [
- "substrate",
- "joystream",
- "runtime"
- ],
- "license": "GPL-3.0-only",
- "bugs": {
- "url": "https://github.com/Joystream/joystream/issues"
- },
- "homepage": "https://github.com/Joystream/joystream",
- "volta": {
- "node": "14.16.1",
- "yarn": "1.22.4"
- }
- }
|