mirror of
https://github.com/godotengine/eslint-plugin-ignore-c-preprocessors.git
synced 2025-12-31 17:49:07 +03:00
20 lines
541 B
JSON
20 lines
541 B
JSON
{
|
|
"private": true,
|
|
"name": "@godot/eslint-plugin-ignore-c-preprocessors",
|
|
"description": "eslint plugin which skips C preprocessors.",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"module": "index.mjs",
|
|
"author": "Godot contributors",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "npx --yes esbuild index.mjs --bundle --platform=node --target=node16 --banner:js='// DO NOT EDIT BY HAND. Use `npm run build` to create this file.' --outfile=index.cjs"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"import": "./index.mjs",
|
|
"require": "./index.cjs"
|
|
}
|
|
}
|
|
}
|