-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.24 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@ixo/assistant-sdk",
"version": "0.0.1",
"description": "An SDK to easily access the Ixo transaction assistant",
"author": "ixo",
"homepage": "https://github.com/ixofoundation/ixo-assistant-sdk#readme",
"license": "SEE LICENSE IN LICENSE",
"main": "main/index.js",
"module": "module/index.js",
"typings": "types/index.d.ts",
"directories": {
"lib": "src"
},
"files": [
"types",
"main",
"module"
],
"scripts": {
"build:local": "npm pack",
"build:main": "cross-env BABEL_ENV=production babel src --out-dir main --delete-dir-on-start --extensions \".tsx,.ts,.js\"",
"build:module": "cross-env MODULE=true babel src --out-dir module --delete-dir-on-start --extensions \".tsx,.ts,.js\"",
"build:ts": "tsc --project ./tsconfig.json",
"build:docs": "typedoc src/index.ts",
"build": "npm run build:module && npm run build:main",
"build:prepare": "npm run build && npm run build:ts && npm run build:docs",
"prepare": "npm run build",
"lint": "eslint src --fix"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/ixofoundation/ixo-assistant-sdk"
},
"keywords": [
"assistant",
"ixo"
],
"bugs": {
"url": "https://github.com/ixofoundation/ixo-assistant-sdk/issues"
},
"devDependencies": {
"@babel/cli": "7.19.3",
"@babel/core": "7.19.3",
"@babel/eslint-parser": "7.19.1",
"@babel/node": "7.19.1",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-export-default-from": "7.18.10",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6",
"@babel/plugin-proposal-numeric-separator": "7.18.6",
"@babel/plugin-proposal-object-rest-spread": "7.19.4",
"@babel/plugin-proposal-optional-chaining": "7.18.9",
"@babel/plugin-transform-runtime": "7.19.1",
"@babel/preset-env": "7.19.4",
"@babel/preset-typescript": "7.18.6",
"@types/node-fetch": "^2.6.9",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "29.1.2",
"babel-watch": "7.0.0",
"cross-env": "7.0.2",
"eslint": "8.25.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"typedoc": "0.23.28",
"typescript": "5.0.2"
},
"dependencies": {
"@babel/runtime": "7.19.4",
"@cosmjs/stargate": "^0.32.0",
"node-fetch": "^3.3.2"
}
}