-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.12 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.12 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
{
"name": "@clockwork-engine/core",
"version": "2.9.0",
"description": "A TypeScript game engine for deterministic, replayable games with platform-agnostic rendering",
"author": "Ramesh Nair <ram@hiddentao.com> (https://hiddentao.com)",
"license": "MIT",
"homepage": "https://github.com/hiddentao/clockwork-engine",
"repository": {
"type": "git",
"url": "https://github.com/hiddentao/clockwork-engine.git"
},
"bugs": {
"url": "https://github.com/hiddentao/clockwork-engine/issues"
},
"keywords": [
"game-engine",
"typescript",
"deterministic",
"replay",
"recording",
"rendering",
"2d-graphics",
"collision-detection"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"dist/clockwork-engine.js",
"dist/clockwork-engine.min.js",
"LICENSE.md",
"README.md",
"docs/",
"package.json",
"bun.lock"
],
"publishConfig": {
"access": "public"
},
"engineStrict": true,
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "bun run scripts/build.ts",
"dev": "bun run clean && tsc --watch",
"clean": "rm -rf dist && rm -f tsconfig.tsbuildinfo",
"coverage": "bun test --coverage --coverage-reporter=lcov && ./scripts/sanitize-lcov.sh",
"test": "bun test",
"test:watch": "bun test --watch",
"test:server": "bun run tests/browser/server.ts",
"test:browser": "playwright test",
"lint": "tsc --noEmit && tsc --noEmit -p tests/tsconfig.json && biome check .",
"lint:fix": "tsc --noEmit && tsc --noEmit -p tests/tsconfig.json && biome check --write .",
"format": "biome format --write .",
"prepublishOnly": "bun run build"
},
"dependencies": {
"alea": "=1.0.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@clockwork-engine/platform-memory": "workspace:*",
"@clockwork-engine/platform-web-pixi": "workspace:*",
"@playwright/test": "^1.56.1",
"@types/bun": "^1.2.21",
"bun-types": "^1.2.21",
"commit-and-tag-version": "^12.6.0",
"happy-dom": "^20.0.10",
"playwright": "^1.56.1",
"typescript": "^5.3.3"
}
}