-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
52 lines (52 loc) · 1.38 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
{
"name": "@tinkoff/invest-openapi-js-sdk",
"version": "1.5.0",
"description": "Tinkoff Invest OpenAPI Client",
"main": "./build/OpenAPI.cjs.js",
"module": "./build/OpenAPI.esm.js",
"types": "./build/OpenAPI.d.ts",
"engines": {
"node": ">=10.0.0"
},
"directories": {
"example": "example"
},
"scripts": {
"prepare": "npm run build",
"build": "rollup --config ./rollup.config.js",
"watch": "rollup --config ./rollup.config.js -w -m",
"docs": "rm -rf ./doc && typedoc",
"types": "swagger-types-generator ./swagger.config.json && npm run docs"
},
"repository": {
"type": "git",
"url": "https://github.com/TinkoffCreditSystems/invest-openapi-js-sdk"
},
"keywords": [
"trading",
"investment",
"strategy",
"bot"
],
"license": "Apache-2.0",
"devDependencies": {
"@tinkoff/swagger-types-generator": "0.0.9",
"@types/isomorphic-fetch": "^0.0.35",
"@types/ws": "^7.2.5",
"fsevents": "^2.0.7",
"prettier": "^2.0.5",
"rollup": "^2.18.0",
"rollup-plugin-dts": "^1.4.7",
"rollup-plugin-typescript2": "^0.27.1",
"tslib": "^2.0.0",
"typedoc": "^0.17.7",
"typedoc-plugin-fixcomputednames": "^1.0.1",
"typedoc-plugin-markdown": "^2.3.1",
"typedoc-plugin-no-inherit": "^1.1.10",
"typescript": "^4.3.4"
},
"dependencies": {
"isomorphic-fetch": "^3.0.0",
"ws": "^7.3.0"
}
}