-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.73 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": "cosmos-journeyer",
"version": "1.11.2",
"private": true,
"description": "Cosmos Journeyer is a space exploration game featuring fully explorable planets, across millions of star systems. It is built using Babylon.JS, and a lot of passion.",
"keywords": [
"babylonjs",
"exploration",
"game",
"procedural-generation",
"space",
"webgl",
"webgpu"
],
"homepage": "https://cosmosjourneyer.com",
"bugs": {
"url": "https://github.com/BarthPaleologue/CosmosJourneyer/issues",
"email": "barth.paleologue@cosmosjourneyer.com"
},
"license": "AGPL-3.0-only",
"author": {
"name": "Barthélemy Paléologue",
"email": "barth.paleologue@cosmosjourneyer.com",
"url": "https://barth.paleologue.fr"
},
"repository": {
"type": "git",
"url": "https://github.com/BarthPaleologue/CosmosJourneyer"
},
"workspaces": [
"packages/*"
],
"type": "module",
"scripts": {
"build": "pnpm -r build",
"build:channel-packer": "pnpm --filter @cosmos-journeyer/channel-packer build",
"build:desktop": "pnpm --filter @cosmos-journeyer/desktop-electron build",
"build:game": "pnpm --filter @cosmos-journeyer/game build",
"build:website": "pnpm --filter @cosmos-journeyer/website build",
"dev:channel-packer": "pnpm --filter @cosmos-journeyer/channel-packer dev",
"dev:desktop": "pnpm --filter @cosmos-journeyer/desktop-electron dev",
"dev:game": "pnpm --filter @cosmos-journeyer/game serve",
"dev:website": "pnpm --filter @cosmos-journeyer/website dev",
"package:desktop": "pnpm --filter @cosmos-journeyer/desktop-electron package",
"format": "pnpm -r format",
"format:check": "pnpm -r format:check",
"test:unit": "pnpm -r test:unit",
"test:e2e": "pnpm --filter @cosmos-journeyer/game test:e2e",
"test:e2e:update": "pnpm --filter @cosmos-journeyer/game test:e2e:update",
"doc": "pnpm -r doc",
"lint": "pnpm -r lint",
"typecheck": "pnpm -r typecheck",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "catalog:",
"@next/eslint-plugin-next": "catalog:",
"eslint": "catalog:",
"eslint-import-resolver-typescript": "catalog:",
"eslint-plugin-import-x": "catalog:",
"husky": "^9.1.7",
"lint-staged": "^17.2.0",
"oxfmt": "catalog:",
"typescript": "catalog:",
"typescript-eslint": "catalog:"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs,json,md,css,html,yml,yaml}": "oxfmt --write"
},
"engines": {
"node": ">=24.0.0"
},
"packageManager": "pnpm@11.1.2"
}