-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.33 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "@cennznet/types",
"version": "2.1.1-alpha.4",
"description": "Additional type definitions for the CENNZnet runtime",
"author": "Centrality Developers <support@centrality.ai>",
"keywords": [
"CENNZnet"
],
"homepage": "https://github.com/cennznet/api.js/tree/master/packages/types",
"license": "Apache-2.0",
"engines": {
"node": ">=14.0.0"
},
"main": "index.js",
"types": "index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/cennznet/api.js.git"
},
"scripts": {
"test": "echo \"Error: run tests from root\" && exit 1",
"build": "yarn generate:defs && yarn generate:meta",
"generate:defs": "ts-node --skip-project node_modules/.bin/polkadot-types-from-defs --package @cennznet/types/interfaces --endpoint ./cennznet.json --input ./src/interfaces",
"generate:meta": "ts-node --skip-project node_modules/.bin/polkadot-types-from-chain --package @cennznet/types/interfaces --endpoint ./cennznet.json --output ./src/interfaces"
},
"dependencies": {
"@polkadot/keyring": "^8.3.3",
"@polkadot/types": "^7.7.1",
"@polkadot/util": "^8.3.3",
"@polkadot/util-crypto": "^8.3.3"
},
"devDependencies": {
"@polkadot/typegen": "^7.7.1"
}
}