-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 830 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 830 Bytes
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
{
"name": "order-matching-engine",
"version": "1.0.0",
"description": "A limit order book with price-time priority matching — market/limit orders, partial fills, and cancellation, built to demonstrate real exchange matching logic.",
"private": false,
"type": "module",
"license": "MIT",
"author": "Nicolás Pedernera <https://github.com/Nicolas-Pedernera>",
"repository": {
"type": "git",
"url": "https://github.com/Nicolas-Pedernera/order-matching-engine.git"
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"lint": "eslint .",
"demo": "tsx src/demo.ts"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/node": "^22.0.0",
"eslint": "^9.0.0",
"tsx": "^4.0.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.0.0",
"vitest": "^3.0.0"
}
}