-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.01 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.01 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
{
"name": "market-open",
"version": "0.0.4",
"type": "commonjs",
"license": "MS-PL",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dprint": "dprint fmt",
"prepare": "npm run build",
"build": "tsup",
"test": "mocha"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.cjs",
"require": "./dist/index.js"
},
"./brokers": {
"types": "./dist/broker/examples/index.d.ts",
"import": "./dist/broker/examples/index.cjs",
"require": "./dist/broker/examples/index.js"
}
},
"devDependencies": {
"@swc-node/register": "^1.10.9",
"@swc/cli": "^0.1.59",
"@swc/core": "^1.3.80",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"@types/sinon": "^17.0.4",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"rimraf": "^6.0.1",
"sinon": "^20.0.0",
"tsup": "^8.3.6",
"typescript": "^5.0.0"
},
"dependencies": {
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0"
}
}