visionforge/visionforge-threejs/build.gradle.kts

16 lines
239 B
Plaintext
Raw Normal View History

2020-11-21 11:17:18 +03:00
plugins {
id("ru.mipt.npm.js")
}
2021-01-12 12:52:22 +03:00
kotlin{
js{
binaries.library()
}
}
2020-11-21 11:17:18 +03:00
dependencies {
api(project(":visionforge-solid"))
2021-01-26 21:05:56 +03:00
implementation(npm("three", "0.124.0"))
implementation(npm("three-csg-ts", "2.2.0"))
2020-11-21 11:17:18 +03:00
}