forked from kscience/visionforge
16 lines
250 B
Plaintext
16 lines
250 B
Plaintext
plugins {
|
|
id("space.kscience.gradle.js")
|
|
}
|
|
|
|
kotlin{
|
|
js{
|
|
binaries.library()
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":visionforge-solid"))
|
|
implementation(npm("three", "0.137.5"))
|
|
implementation(npm("three-csg-ts", "3.1.10"))
|
|
}
|