-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.51 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.51 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
{
"name": "@clockwork-engine/platform-web-pixi",
"version": "2.9.0",
"description": "Web platform layer with PIXI.js rendering for Clockwork Engine",
"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",
"clockwork",
"platform",
"web",
"pixi",
"pixijs",
"rendering",
"2d-graphics"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"LICENSE.md",
"README.md",
"package.json"
],
"publishConfig": {
"access": "public"
},
"engineStrict": true,
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "bun run scripts/build.ts",
"dev": "tsc --watch",
"clean": "rm -rf dist && rm -f tsconfig.tsbuildinfo",
"lint": "tsc --noEmit && biome check .",
"lint:fix": "tsc --noEmit && biome check --write .",
"format": "biome format --write .",
"prepublishOnly": "bun run build"
},
"dependencies": {
"pixi.js": "=8.13.2",
"pixi-viewport": "=6.0.3"
},
"peerDependencies": {
"@clockwork-engine/core": "^2.7.0"
},
"devDependencies": {
"@clockwork-engine/core": "workspace:*",
"@biomejs/biome": "^1.9.2",
"typescript": "^5.3.3"
}
}