mirror of
https://github.com/godotengine/eslint-plugin-ignore-c-preprocessors.git
synced 2026-01-03 05:49:38 +03:00
21 lines
621 B
JSON
21 lines
621 B
JSON
{
|
|
"private": true,
|
|
"name": "@godotengine/eslint-plugin-ignore-c-preprocessors",
|
|
"description": "eslint plugin which skips C preprocessors.",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"module": "index.mjs",
|
|
"author": "Godot Engine 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"
|
|
}
|
|
},
|
|
"repository": "godotengine/eslint-plugin-ignore-c-preprocessors"
|
|
}
|