TypeScript 97.6%
SQL 1.4%
JavaScript 0.5%
1{2 "name": "@spinza/simulator",3 "version": "0.1.0",4 "private": true,5 "type": "module",6 "main": "./src/index.ts",7 "exports": {8 ".": "./src/index.ts"9 },10 "scripts": {11 "sim": "tsx src/cli.ts",12 "certify": "tsx src/cli.ts certify all",13 "typecheck": "tsc -p tsconfig.json --noEmit",14 "test": "vitest run --passWithNoTests"15 },16 "dependencies": {17 "@spinza/game-core": "workspace:*",18 "@spinza/games": "workspace:*",19 "@spinza/shared": "workspace:*",20 "tsx": "^4.20.0"21 },22 "devDependencies": {23 "@types/node": "^24.0.0",24 "typescript": "^5.9.3",25 "vitest": "^3.2.0"26 }27}28