Files
eslint-plugin-ignore-c-prep…/package.json
2024-12-17 06:47:13 -05:00

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"
}