-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 874 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 874 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
34
35
36
{
"name": "ed3dm-webgpu",
"version": "0.1.0",
"private": true,
"type": "module",
"license": "MIT",
"description": "Elite Dangerous 3D galaxy interface powered by PEGE (WebGPU + WebGL2 fallback).",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:lib": "vite build --config vite.lib.config.ts",
"convert": "tsx src/converter/cli.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"bin": {
"ed3dm-convert": "./src/converter/cli.ts"
},
"exports": {
".": "./src/index.ts"
},
"dependencies": {
"pege": "github:Fenris159/PEGE#v1.8.0",
"three": "^0.172.0"
},
"devDependencies": {
"@types/node": "^26.2.0",
"@types/three": "^0.172.0",
"jsdom": "^25.0.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite": "^6.0.7",
"vitest": "^2.1.8"
}
}