-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
148 lines (148 loc) · 4.94 KB
/
Copy pathpackage.json
File metadata and controls
148 lines (148 loc) · 4.94 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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "@stocksharp/trading-controls",
"version": "1.1.0",
"description": "Browser trading controls for StockSharp: order blotters, positions, trade history, watchlist and trade feed, each built against one host port and rendering its own DOM.",
"license": "SEE LICENSE IN LICENSE",
"author": {
"name": "StockSharp Platform LLC",
"url": "https://stocksharp.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StockSharp/JS-TradingControls.git"
},
"homepage": "https://github.com/StockSharp/JS-TradingControls#readme",
"bugs": {
"url": "https://github.com/StockSharp/JS-TradingControls/issues"
},
"keywords": [
"stocksharp",
"trading",
"terminal",
"blotter",
"positions",
"orders",
"watchlist",
"market-data",
"typescript",
"dom"
],
"type": "module",
"sideEffects": [
"*.css"
],
"main": "./dist/esm/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"unpkg": "./dist/sstradingcontrols.js",
"jsdelivr": "./dist/sstradingcontrols.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js"
},
"./trading-host": {
"types": "./dist/types/trading-host.d.ts",
"import": "./dist/esm/trading-host.js"
},
"./control-types": {
"types": "./dist/types/control-types.d.ts",
"import": "./dist/esm/control-types.js"
},
"./formatters": {
"types": "./dist/types/formatters.d.ts",
"import": "./dist/esm/formatters.js"
},
"./dom": {
"types": "./dist/types/dom.d.ts",
"import": "./dist/esm/dom.js"
},
"./positions-widget": {
"types": "./dist/types/positions-widget.d.ts",
"import": "./dist/esm/positions-widget.js"
},
"./trade-history-widget": {
"types": "./dist/types/trade-history-widget.d.ts",
"import": "./dist/esm/trade-history-widget.js"
},
"./active-orders-widget": {
"types": "./dist/types/active-orders-widget.d.ts",
"import": "./dist/esm/active-orders-widget.js"
},
"./watchlist-widget": {
"types": "./dist/types/watchlist-widget.d.ts",
"import": "./dist/esm/watchlist-widget.js"
},
"./order-entry-widget": {
"types": "./dist/types/order-entry-widget.d.ts",
"import": "./dist/esm/order-entry-widget.js"
},
"./orderbook-widget": {
"types": "./dist/types/orderbook-widget.d.ts",
"import": "./dist/esm/orderbook-widget.js"
},
"./tradefeed-widget": {
"types": "./dist/types/tradefeed-widget.d.ts",
"import": "./dist/esm/tradefeed-widget.js"
},
"./source": "./src/index.ts",
"./source/trading-host": "./src/trading-host.ts",
"./source/control-types": "./src/control-types.ts",
"./source/formatters": "./src/formatters.ts",
"./source/dom": "./src/dom.ts",
"./source/positions-widget": "./src/positions-widget.ts",
"./source/trade-history-widget": "./src/trade-history-widget.ts",
"./source/active-orders-widget": "./src/active-orders-widget.ts",
"./source/watchlist-widget": "./src/watchlist-widget.ts",
"./source/order-entry-widget": "./src/order-entry-widget.ts",
"./source/orderbook-widget": "./src/orderbook-widget.ts",
"./source/tradefeed-widget": "./src/tradefeed-widget.ts",
"./styles.css": "./styles/trading-controls.css",
"./theme.css": "./styles/theme.css",
"./translation-keys.json": "./translation-keys.json",
"./package.json": "./package.json"
},
"files": [
"dist",
"screenshots",
"src",
"styles",
"translation-keys.json",
"LICENSE",
"NOTICE",
"README.md"
],
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "node build.mjs",
"serve": "node serve.mjs",
"prepack": "npm run build",
"typecheck": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p tsconfig.test.json",
"api:check": "node tools/check-public-api.mjs",
"api:update": "node tools/check-public-api.mjs --update",
"css:check": "node tools/check-style-contract.mjs",
"i18n:check": "node tools/check-translation-keys.mjs",
"i18n:update": "node tools/check-translation-keys.mjs --update",
"build:tests": "node build-tests.mjs",
"test": "npm run typecheck && npm run api:check && npm run css:check && npm run i18n:check && npm run build:tests && node --test \"tests/_dist/**/*.test.cjs\"",
"pack:check": "npm pack --dry-run",
"release:check": "node tools/check-release-tag.mjs",
"release:patch": "npm version patch -m \"chore: release v%s\"",
"release:minor": "npm version minor -m \"chore: release v%s\"",
"release:major": "npm version major -m \"chore: release v%s\""
},
"dependencies": {
"@stocksharp/grids": "^1.1.0"
},
"devDependencies": {
"@stocksharp/chart": "^0.2.3",
"@types/node": "^24.0.0",
"dockview-core": "^6.6.1",
"esbuild": "^0.25.0",
"typescript": "^5.8.0"
}
}