Some checks failed
CI / go (push) Waiting to run
CI / docker (push) Waiting to run
CI / lint-go (push) Waiting to run
CI / lint-docs (push) Waiting to run
CI / check-paperclip (push) Waiting to run
Deploy static site / Deploy to GitHub Pages (push) Has been cancelled
Deploy static site / Deploy via Docker to hatch.surf (push) Has been cancelled
Resolved conflicts by taking GitHub versions for: - .dockerignore, .gitignore, Dockerfile, README.md, docker-compose.yml Kept deploy.sh updated to: - Pull from GitHub (primary source) - Push to Gitea (push-mirror) - Build from site/ directory (GitHub structure) Co-Authored-By: Paperclip <noreply@paperclip.ing>
62 lines
1.7 KiB
JSON
62 lines
1.7 KiB
JSON
{
|
|
"name": "@eslint/plugin-kit",
|
|
"version": "0.4.1",
|
|
"description": "Utilities for building ESLint plugins.",
|
|
"author": "Nicholas C. Zakas",
|
|
"type": "module",
|
|
"main": "dist/esm/index.js",
|
|
"types": "dist/esm/index.d.ts",
|
|
"exports": {
|
|
"require": {
|
|
"types": "./dist/cjs/index.d.cts",
|
|
"default": "./dist/cjs/index.cjs"
|
|
},
|
|
"import": {
|
|
"types": "./dist/esm/index.d.ts",
|
|
"default": "./dist/esm/index.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/eslint/rewrite.git",
|
|
"directory": "packages/plugin-kit"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/eslint/rewrite/issues"
|
|
},
|
|
"homepage": "https://github.com/eslint/rewrite/tree/main/packages/plugin-kit#readme",
|
|
"scripts": {
|
|
"build:dedupe-types": "node ../../tools/dedupe-types.js dist/cjs/index.cjs dist/esm/index.js",
|
|
"build:cts": "node ../../tools/build-cts.js dist/esm/index.d.ts dist/cjs/index.d.cts",
|
|
"build": "rollup -c && npm run build:dedupe-types && tsc -p tsconfig.esm.json && npm run build:cts",
|
|
"pretest": "npm run build",
|
|
"test": "mocha \"tests/**/*.test.js\"",
|
|
"test:coverage": "c8 npm test",
|
|
"test:jsr": "npx jsr@latest publish --dry-run",
|
|
"test:types": "tsc -p tests/types/tsconfig.json"
|
|
},
|
|
"keywords": [
|
|
"eslint",
|
|
"eslintplugin",
|
|
"eslint-plugin"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"@eslint/core": "^0.17.0",
|
|
"levn": "^0.4.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/levn": "^0.4.0",
|
|
"rollup-plugin-copy": "^3.5.0"
|
|
},
|
|
"engines": {
|
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
}
|
|
}
|