-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.45 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.45 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
{
"name": "isometrix",
"description": "TypeScript packages for building isometric scenes",
"license": "MIT",
"private": true,
"type": "module",
"packageManager": "pnpm@10.22.0",
"scripts": {
"build": "pnpm -r --if-present build",
"test": "pnpm -r --if-present test",
"typecheck": "pnpm -r --if-present typecheck && pnpm run typecheck:example",
"typecheck:example": "tsc -p tsconfig.example.json",
"example": "pnpm --filter @isometrix/iso-core run build && pnpm --filter @isometrix/iso-motion run build && pnpm --filter @isometrix/iso-pixi run build && pnpm exec vite ./examples/basic-scene --host 127.0.0.1 --port 4176",
"example:build": "pnpm --filter @isometrix/iso-core run build && pnpm --filter @isometrix/iso-motion run build && pnpm --filter @isometrix/iso-pixi run build && pnpm exec vite build ./examples/basic-scene --outDir ./dist"
},
"dependencies": {
"@isometrix/iso-core": "workspace:*",
"@isometrix/iso-motion": "workspace:*",
"@isometrix/iso-pixi": "workspace:*",
"pixi.js": "^8.14.0"
},
"devDependencies": {
"typescript": "^5.9.3",
"vite": "^7.0.0"
},
"homepage": "https://github.com/nickL/isometrix",
"repository": {
"type": "git",
"url": "git+https://github.com/nickL/isometrix.git"
},
"bugs": {
"url": "https://github.com/nickL/isometrix/issues"
},
"author": "Nick Lewis",
"keywords": [
"isometric",
"pixi",
"typescript",
"scene",
"rendering"
]
}