20 lines
276 B
Plaintext
20 lines
276 B
Plaintext
plugins {
|
|
id("ru.mipt.npm.js")
|
|
}
|
|
|
|
kscience {
|
|
useSerialization()
|
|
}
|
|
|
|
kotlin{
|
|
js{
|
|
binaries.library()
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":visionforge-solid"))
|
|
implementation(npm("three", "0.122.0"))
|
|
implementation(npm("three-csg-ts", "2.0.0"))
|
|
}
|