-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 849 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 849 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
29
30
31
32
33
{
"name": "typescript-grid-simulation-engine",
"version": "1.1.0",
"private": true,
"description": "A TypeScript 2D grid simulation engine with deterministic movement, contamination rules, and unit-tested domain logic.",
"main": "src/index.ts",
"scripts": {
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"build": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"keywords": [
"typescript",
"grid",
"simulation",
"2d-array",
"testing",
"vitest"
],
"author": "Candy Cheng <candycheng.it@gmail.com>",
"license": "UNLICENSED",
"devDependencies": {
"@types/node": "^25.6.0",
"prettier": "^3.8.3",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
}
}