-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
97 lines (97 loc) · 3.34 KB
/
package.json
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"devDependencies": {
"@babylonjs/core": "^7.40.3",
"@babylonjs/gui": "^7.40.3",
"@babylonjs/havok": "^1.3.10",
"@babylonjs/inspector": "^7.40.3",
"@babylonjs/loaders": "^7.40.3",
"@brianchirls/game-input": "^0.1.1",
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@tauri-apps/cli": "2.1.0",
"@types/d3": "^7.4.3",
"@types/seedrandom": "^3.0.8",
"@types/webpack": "^5.28.5",
"@types/webpack-env": "^1.18.5",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"@vitest/coverage-v8": "3.0.2",
"@webpack-cli/generators": "^3.0.7",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"d3": "^7.9.0",
"eslint": "^9.17.0",
"eslint-plugin-import": "^2.31.0",
"extended-random": "^1.2.2",
"fast-simplex-noise": "^4.0.0",
"globals": "^15.13.0",
"handle-sliderjs": "^1.3.1",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.3",
"http-server": "^14.1.1",
"i18next": "^24.1.2",
"mini-css-extract-plugin": "^2.9.2",
"prettier": "^3.4.2",
"raw-loader": "^4.0.2",
"sass": "^1.83.0",
"sass-loader": "^16.0.4",
"squirrel-noise": "^1.0.0",
"style-loader": "^4.0.0",
"terrain-generation": "^1.8.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"ts-shader-loader": "^2.0.2",
"typedoc": "^0.27.5",
"typedoc-github-theme": "^0.2.0",
"typedoc-plugin-missing-exports": "^3.1.0",
"typescript": "~5.7.2",
"typescript-plugin-css-modules": "^5.1.0",
"vitest": "^3.0.2",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.0"
},
"version": "1.9.0",
"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.",
"name": "cosmos-journeyer",
"homepage": "https://cosmosjourneyer.com",
"author": {
"name": "Barthélemy Paléologue",
"email": "[email protected]",
"url": "https://barth.paleologue.fr"
},
"license": "AGPL-3.0-only",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/BarthPaleologue/CosmosJourneyer"
},
"bugs": {
"url": "https://github.com/BarthPaleologue/CosmosJourneyer/issues",
"email": "[email protected]"
},
"keywords": [
"space",
"game",
"exploration",
"babylonjs",
"procedural-generation",
"webgl",
"webgpu"
],
"contributors": [],
"scripts": {
"build": "webpack --mode=production --node-env=production",
"serve": "webpack serve --progress",
"serve:prod": "http-server dist -p 8080",
"format:check": "prettier . --check",
"format": "prettier . --write",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"build:docs": "typedoc --options typedoc.json",
"serve:docs": "http-server docs -p 8081",
"lint:check": "eslint .",
"lint:fix": "eslint . --fix"
}
}