16 lines
246 B
Plaintext
16 lines
246 B
Plaintext
plugins {
|
|
id("ru.mipt.npm.gradle.js")
|
|
}
|
|
|
|
kotlin{
|
|
js{
|
|
binaries.library()
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":visionforge-solid"))
|
|
implementation(npm("three", "0.130.1"))
|
|
implementation(npm("three-csg-ts", "3.1.9"))
|
|
}
|