esbuild-plugin-glsl
Version:
An esbuild plugin that adds support for shader imports.
85 lines (84 loc) • 1.72 kB
JSON
{
"name": "esbuild-plugin-glsl",
"version": "1.4.0",
"description": "An esbuild plugin that adds support for shader imports.",
"homepage": "https://github.com/vanruesc/esbuild-plugin-glsl",
"license": "Zlib",
"type": "module",
"sideEffects": false,
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"keywords": [
"esbuild",
"plugin",
"glsl",
"frag",
"vert",
"wgsl",
"shader",
"import",
"compress",
"minify"
],
"author": {
"name": "Raoul van Rüschen",
"email": "vanruesc@outlook.de"
},
"repository": {
"url": "git+https://github.com/vanruesc/esbuild-plugin-glsl.git"
},
"bugs": {
"url": "https://github.com/vanruesc/esbuild-plugin-glsl/issues"
},
"files": [
"dist"
],
"engines": {
"node": ">= 18"
},
"ava": {
"failFast": true,
"files": [
"test/*.js"
]
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"scripts": {
"ava": "ava",
"build": "run-s build:*",
"build:js": "node esbuild",
"build:dts": "tsc -p tsconfig.d.json",
"clean": "del-cli dist test/generated",
"lint": "tsc --noemit && eslint src --fix",
"prepublishOnly": "npm test",
"test": "run-s lint clean build ava"
},
"peerDependencies": {
"esbuild": "0.x.x"
},
"devDependencies": {
"@types/node": "22.x.x",
"@typescript-eslint/eslint-plugin": "8.x.x",
"@typescript-eslint/parser": "8.x.x",
"ava": "6.x.x",
"del-cli": "6.x.x",
"esbuild": "0.25.x",
"eslint": "9.x.x",
"eslint-config-aether": "2.x.x",
"npm-run-all": "4.x.x",
"tslib": "2.x.x",
"typescript": "5.x.x"
}
}