-
Notifications
You must be signed in to change notification settings - Fork 189
Expand file tree
/
Copy pathpackage.json
More file actions
168 lines (168 loc) · 6.12 KB
/
package.json
File metadata and controls
168 lines (168 loc) · 6.12 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
{
"name": "keeptrack.space",
"version": "12.2.10",
"type": "module",
"description": "Complex astrodynamics tools designed for non-engineers to make learning about orbital mechanics and satellite operations more accessible.",
"author": "Theodore Kruczek",
"contributors": [
{
"name": "Theo Warsmann",
"url": "https://github.com/Koroviev-and-Begemot"
},
{
"name": "Le-Roi Claassen",
"url": "https://www.linkedin.com/in/leroiclaassen-webdev/"
},
{
"name": "Heather Kruczek"
}
],
"license": "AGPL-3.0",
"homepage": "https://keeptrack.space",
"bugs": {
"url": "https://github.com/thkruz/keeptrack.space/issues",
"email": "theodore.kruczek@gmail.com"
},
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"lib/workers"
],
"scripts": {
"setenv": "npx tsx ./build/set-env.ts",
"prebuild": "npx tsx ./build/get-submodules.ts && npx tsx ./build/generate-translation.ts",
"build": "npx tsx ./build/build-manager.ts production",
"build:pro": "npx tsx ./build/generate-translation.ts && npx tsx ./build/build-manager.ts production --profile=pro",
"build:celestrak": "npx tsx ./build/generate-translation.ts && npx tsx ./build/build-manager.ts production --profile=celestrak",
"build:embed": "npx tsx ./build/generate-translation.ts && npx tsx ./build/build-manager.ts production --profile=embed",
"build:epfl": "npx tsx ./build/generate-translation.ts && npx tsx ./build/build-manager.ts production --profile=epfl",
"build:offline": "npx tsx ./build/generate-translation.ts && npx tsx ./build/build-manager.ts production --profile=offline",
"upload:sourcemaps": "npx tsx ./build/lib/sourcemap-uploader.ts",
"changelog": "auto-changelog --tag-prefix v --commit-limit false -t ./changelog.hbs -o ./docs/CHANGELOG.md",
"generate-t7e": "npx tsx ./build/generate-translation.ts",
"lcov": "npx tsx ./build/utils/open-lcov.ts",
"lint": "eslint ./src --ext js,ts,tsx",
"typecheck": "tsc --noEmit -p tsconfig.build.json",
"createtest": "npx tsx ./scripts/create-test-file.ts",
"start": "npx tsx ./build/dev-server.ts --profile=oss",
"start:pro": "npx tsx ./build/dev-server.ts --profile=pro",
"start:celestrak": "npx tsx ./build/dev-server.ts --profile=celestrak",
"start:ci": "npx tsx ./build/dev-server.ts --static",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest run --coverage",
"test:e2e": "npx playwright test",
"test:e2e:ui": "npx playwright test --ui",
"test:e2e:headed": "npx playwright test --headed",
"test:e2e:smoke": "npx playwright test src/__tests__/app-smoke.spec.ts",
"check:locales": "npx tsx scripts/check-locale-quality.ts",
"check:locales:quick": "npx tsx scripts/check-locale-quality.ts --skip-llm",
"test:watch": "vitest",
"test:watchCoverage": "vitest --coverage",
"prepublishOnly": "npm run build:lib",
"version:major": "npm version major && npm run changelog",
"version:minor": "npm version minor && npm run changelog",
"version:patch": "npm version patch && npm run changelog",
"docs": "typedoc",
"husky": "husky install"
},
"chromium-args": "--enable-threaded-compositing",
"directories": {
"app": "src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thkruz/keeptrack.space.git"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/plugin-transform-modules-commonjs": "^7.23.0",
"@babel/preset-env": "^7.25.3",
"@babel/preset-typescript": "^7.23.0",
"@playwright/test": "^1.58.2",
"@rspack/cli": "^1.7.11",
"@rspack/core": "^1.4.11",
"@testing-library/dom": "^9.3.3",
"@testing-library/user-event": "^14.5.2",
"@types/agent-base": "^4.2.2",
"@types/dotenv-webpack": "^7.0.8",
"@types/draggabilly": "^2.1.6",
"@types/file-saver": "^2.0.7",
"@types/google-publisher-tag": "^1.20260216.0",
"@types/jest": "^30.0.0",
"@types/materialize-css": "^1.0.11",
"@types/node": "^24.7.0",
"@types/numeric": "^1.2.2",
"@types/opener": "^1.4.3",
"@types/papaparse": "^5.3.14",
"@types/webgl2": "^0.0.11",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@typescript-eslint/typescript-estree": "^8.46.0",
"@vitest/coverage-v8": "^4.0.18",
"auto-changelog-thkruz": "^1.0.0",
"babel-loader": "^9.1.3",
"babel-plugin-istanbul": "^6.1.1",
"clean-terminal-webpack-plugin": "^3.0.0",
"coverage-istanbul-loader": "^3.0.5",
"cross-env": "^7.0.3",
"css-loader": "^7.1.4",
"dotenv-webpack": "^8.1.1",
"eslint": "^8.57.0",
"happy-dom": "^20.5.0",
"husky": "^8.0.1",
"imports-loader": "^4.0.1",
"jsdom": "^28.1.0",
"jsdom-worker": "^0.3.0",
"mini-css-extract-plugin": "^2.7.6",
"papaparse": "^5.4.1",
"prettier-plugin-organize-imports": "^4.3.0",
"source-map-loader": "^4.0.2",
"style-loader": "^4.0.0",
"ts-loader": "^9.4.4",
"tsup": "^8.5.1",
"tsx": "^4.19.0",
"typedoc": "^0.28.17",
"typedoc-plugin-merge-modules": "^7.0.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18",
"vitest-canvas-mock": "^0.3.3",
"webgl-lint": "^1.11.3",
"webgl-mock": "^0.1.7",
"webpackbar": "^7.0.0",
"worker-loader": "^3.0.8"
},
"dependencies": {
"@e965/xlsx": "0.20.3",
"@materializecss/materialize": "^1.2.2",
"@supabase/supabase-js": "^2.55.0",
"astronomy-engine": "^2.1.19",
"dotenv": "^16.5.0",
"draggabilly": "^3.0.0",
"echarts": "^5.6.0",
"echarts-gl": "^2.0.9",
"eruda": "^3.4.3",
"file-saver": "^2.0.5",
"flag-icons": "^7.2.3",
"gl-matrix": "^3.4.4",
"gremlins.js": "^2.2.0",
"i18next": "^23.14.0",
"i18next-browser-languagedetector": "^8.0.0",
"material-icons": "^1.13.12",
"new-github-issue-url": "^1.0.0",
"numeric": "^1.2.6",
"openmeteo": "^1.2.0",
"requestidlecallback-polyfill": "^1.0.2",
"resizable": "^2.0.0",
"uuid": "^11.1.0",
"webgl-obj-loader": "^2.0.8"
},
"volta": {
"node": "24.14.0"
}
}