Add typescript into devDependencies in tslib/types & tslib/storage

This commit is contained in:
porink0424
2024-04-19 17:28:51 +09:00
parent f58f306f8b
commit 5d6e7beba1
5 changed files with 50 additions and 7 deletions
+8 -2
View File
@@ -43,19 +43,25 @@
}
},
"../storage": {
"name": "@optuna/storage",
"version": "0.0.1",
"license": "MIT",
"dependencies": {
"@sqlite.org/sqlite-wasm": "^3.45.1-build1"
},
"devDependencies": {
"@optuna/types": "../types/"
"@optuna/types": "../types/",
"typescript": "^5.4.5"
}
},
"../types": {
"name": "@optuna/types",
"version": "0.0.1",
"dev": true,
"license": "MIT"
"license": "MIT",
"devDependencies": {
"typescript": "^5.4.5"
}
},
"node_modules/@adobe/css-tools": {
"version": "4.3.3",
+19 -2
View File
@@ -12,7 +12,8 @@
"@sqlite.org/sqlite-wasm": "^3.45.1-build1"
},
"devDependencies": {
"@optuna/types": "../types/"
"@optuna/types": "../types/",
"typescript": "^5.4.5"
}
},
"../entity": {
@@ -25,7 +26,10 @@
"name": "@optuna/types",
"version": "0.0.1",
"dev": true,
"license": "MIT"
"license": "MIT",
"devDependencies": {
"typescript": "^5.4.5"
}
},
"node_modules/@optuna/types": {
"resolved": "../types",
@@ -38,6 +42,19 @@
"bin": {
"sqlite-wasm": "bin/index.js"
}
},
"node_modules/typescript": {
"version": "5.4.5",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.5.tgz",
"integrity": "sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==",
"dev": true,
"bin": {
"tsc": "bin/tsc",
"tsserver": "bin/tsserver"
},
"engines": {
"node": ">=14.17"
}
}
}
}
+2 -1
View File
@@ -26,6 +26,7 @@
"@sqlite.org/sqlite-wasm": "^3.45.1-build1"
},
"devDependencies": {
"@optuna/types": "../types/"
"@optuna/types": "../types/",
"typescript": "^5.4.5"
}
}
+17 -1
View File
@@ -7,7 +7,23 @@
"": {
"name": "@optuna/types",
"version": "0.0.1",
"license": "MIT"
"license": "MIT",
"devDependencies": {
"typescript": "^5.4.5"
}
},
"node_modules/typescript": {
"version": "5.4.5",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.5.tgz",
"integrity": "sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==",
"dev": true,
"bin": {
"tsc": "bin/tsc",
"tsserver": "bin/tsserver"
},
"engines": {
"node": ">=14.17"
}
}
}
}
+4 -1
View File
@@ -19,5 +19,8 @@
"bugs": {
"url": "https://github.com/optuna/optuna-dashboard/issues"
},
"homepage": "https://github.com/optuna/optuna-dashboard#readme"
"homepage": "https://github.com/optuna/optuna-dashboard#readme",
"devDependencies": {
"typescript": "^5.4.5"
}
}