Files
eslint-plugin-ignore-c-prep…/package.json
2024-12-17 04:45:49 -05:00

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