Adding language switching and minimize button #43

Merged
SinusFox merged 47 commits from adding-unit-tests-and-language-switching into main 2024-10-11 07:30:11 +00:00
2 changed files with 17 additions and 0 deletions
Showing only changes of commit 930d7fbdae - Show all commits
+16
View File
@@ -8,6 +8,7 @@
"name": "or-tool", "name": "or-tool",
"version": "0.1.0", "version": "0.1.0",
"dependencies": { "dependencies": {
"glpk.js": "^4.0.2",
"next": "14.2.11", "next": "14.2.11",
"react": "^18", "react": "^18",
"react-dom": "^18", "react-dom": "^18",
@@ -2597,6 +2598,15 @@
"url": "https://github.com/sponsors/sindresorhus" "url": "https://github.com/sponsors/sindresorhus"
} }
}, },
"node_modules/glpk.js": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/glpk.js/-/glpk.js-4.0.2.tgz",
"integrity": "sha512-GADfTGaExp7C6JfBnBdx7SF80hxPO30VvLP9wpA6EhXgDj5/Oapm+gyF0EFEC7RrPX4JpfRI3TmAtlLckeQIXw==",
"license": "GPL-3.0",
"dependencies": {
"pako": "^2.0.4"
}
},
"node_modules/gopd": { "node_modules/gopd": {
"version": "1.0.1", "version": "1.0.1",
"resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz",
@@ -3835,6 +3845,12 @@
"url": "https://github.com/sponsors/sindresorhus" "url": "https://github.com/sponsors/sindresorhus"
} }
}, },
"node_modules/pako": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/pako/-/pako-2.1.0.tgz",
"integrity": "sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==",
"license": "(MIT AND Zlib)"
},
"node_modules/parent-module": { "node_modules/parent-module": {
"version": "1.0.1", "version": "1.0.1",
"resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
+1
View File
@@ -9,6 +9,7 @@
"lint": "next lint" "lint": "next lint"
}, },
"dependencies": { "dependencies": {
"glpk.js": "^4.0.2",
"next": "14.2.11", "next": "14.2.11",
"react": "^18", "react": "^18",
"react-dom": "^18", "react-dom": "^18",