vite-plugin-tsl-operator
Version:
A Vite plugin to let you use standard JS operators (+, -, *, /, %, >, <, ==, &&, ||, !) with TSL Nodes in your Three.js project.
37 lines • 1.03 kB
JSON
{
"name": "vite-plugin-tsl-operator",
"version": "1.8.2",
"description": "A Vite plugin to let you use standard JS operators (+, -, *, /, %, >, <, ==, &&, ||, !) with TSL Nodes in your Three.js project.",
"main": "src/index.js",
"type": "module",
"keywords": [
"tsl",
"threejs",
"vite",
"plugin",
"operators",
"transform"
],
"repository": "github:makio64/vite-plugin-tsl-operator",
"author": "David Ronai | Makio64",
"license": "MIT",
"dependencies": {
"@babel/generator": "^7.29.1",
"@babel/parser": "^7.29.0",
"@babel/traverse": "^7.29.0",
"@babel/types": "^7.29.0"
},
"devDependencies": {
"@vitest/browser": "^4.0.18",
"@vitest/browser-playwright": "^4.0.18",
"playwright": "^1.58.2",
"three": "^0.183.1",
"vitest": "^4.0.18"
},
"scripts": {
"build": "mkdir -p dist && cp src/index.js dist/index.js",
"test": "vitest run",
"test:unit": "vitest run --project unit",
"test:browser": "vitest run --project browser"
}
}