-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
46 lines (46 loc) · 1.51 KB
/
package.json
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
37
38
39
40
41
42
43
44
45
46
{
"author": "Edwin Wang <[email protected]>",
"bugs": "https://github.com/bifrost-finance/bifrost.js/issues",
"engines": {
"node": ">=16"
},
"homepage": "https://github.com/bifrost-finance/bifrost.js#readme",
"license": "Apache-2.0",
"packageManager": "[email protected]",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/bifrost-finance/bifrost.js.git"
},
"sideEffects": false,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn build:interfaces && polkadot-dev-build-ts",
"build:interfaces": "ts-node -r tsconfig-paths/register packages/types/scripts/generateTypes.ts && ts-node -r tsconfig-paths/register packages/type-definitions/scripts/generate.ts",
"check-deps": "./node_modules/@open-web3/util/scripts/check-deps.js yarn.lock @polkadot/ @open-web3/",
"clean": "polkadot-dev-clean-build",
"lint": "polkadot-dev-run-lint",
"postinstall": "polkadot-dev-yarn-only",
"test": "echo noop",
"update-metadata": "ts-node --project ./tsconfig.json packages/types/scripts/updateMetadata.ts"
},
"dependencies": {
"lerna": "^5.3.0"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/register": "^7.21.0",
"@babel/runtime": "^7.21.5",
"@open-web3/util": "^2.0.1",
"@polkadot/api": "^10.7.3",
"@polkadot/dev": "^0.75.11",
"@polkadot/typegen": "^10.7.3",
"@types/jest": "^29.5.1",
"jest-config": "^29.5.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.4"
}
}