-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.43 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
{
"name": "atrion",
"version": "2.0.0",
"description": "Deterministic Physics Engine for Adaptive Traffic Orchestration",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./core": {
"types": "./dist/core/index.d.ts",
"import": "./dist/core/index.js"
},
"./simulation": {
"types": "./dist/simulation/runner.d.ts",
"import": "./dist/simulation/runner.js"
},
"./wasm": {
"types": "./atrion-physics/pkg/atrion_physics.d.ts",
"import": "./atrion-physics/pkg/atrion_physics.js"
}
},
"files": [
"dist",
"atrion-physics/pkg",
"LICENSE",
"README.md"
],
"scripts": {
"audit:arch": "depcruise src --config .dependency-cruiser.js",
"audit:code": "eslint src --ext .ts",
"prepare": "husky install",
"build": "tsc",
"build:wasm": "cd atrion-physics && wasm-pack build --target web --out-dir pkg",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"simulate": "tsx src/simulation/index.ts",
"stability-map": "tsx src/analysis/mapper.ts",
"prepublishOnly": "npm run build:wasm && npm run build && npm test"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix",
"depcruise --validate .dependency-cruiser.js"
]
},
"keywords": [
"fault-tolerance",
"distributed-systems",
"circuit-breaker",
"physics-engine",
"load-balancing",
"resilience",
"traffic-management",
"typescript"
],
"author": "Erdem Arslan <me@erdem.work>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/cluster-127/atrion.git"
},
"homepage": "https://github.com/cluster-127/atrion#readme",
"bugs": {
"url": "https://github.com/cluster-127/atrion/issues"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/ioredis": "^4.28.10",
"@types/node": "^20.x",
"axios": "^1.13.2",
"dependency-cruiser": "^17.3.6",
"eslint-plugin-functional": "^9.0.2",
"express": "^5.2.1",
"fast-check": "^3.x",
"husky": "^9.1.7",
"ioredis": "^5.9.2",
"lint-staged": "^16.2.7",
"tsx": "^4.x",
"typescript": "^5.x",
"vitest": "^1.x"
},
"dependencies": {
"asciichart": "^1.5.25"
}
}