2020-11-21 11:17:18 +03:00
|
|
|
plugins {
|
2022-08-12 22:16:06 +03:00
|
|
|
id("space.kscience.gradle.js")
|
2020-11-21 11:17:18 +03:00
|
|
|
}
|
|
|
|
|
2022-01-02 19:43:31 +03:00
|
|
|
kotlin{
|
2022-11-17 21:49:14 +03:00
|
|
|
explicitApi = org.jetbrains.kotlin.gradle.dsl.ExplicitApiMode.Disabled
|
2022-01-02 19:43:31 +03:00
|
|
|
js{
|
|
|
|
binaries.library()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-21 11:17:18 +03:00
|
|
|
dependencies {
|
|
|
|
api(project(":visionforge-solid"))
|
2022-08-14 20:28:47 +03:00
|
|
|
implementation(npm("three", "0.143.0"))
|
2022-05-24 23:00:10 +03:00
|
|
|
implementation(npm("three-csg-ts", "3.1.10"))
|
2022-08-14 22:03:46 +03:00
|
|
|
implementation(npm("three.meshline","1.4.0"))
|
2020-11-21 11:17:18 +03:00
|
|
|
}
|