You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.6 KiB
62 lines
1.6 KiB
{ |
|
"name": "@eslint/plugin-kit", |
|
"version": "0.2.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" |
|
}, |
|
"bugs": { |
|
"url": "https://github.com/eslint/rewrite/issues" |
|
}, |
|
"homepage": "https://github.com/eslint/rewrite#readme", |
|
"scripts": { |
|
"build:dedupe-types": "node ../../tools/dedupe-types.js dist/cjs/index.cjs dist/esm/index.js", |
|
"build:cts": "node -e \"fs.copyFileSync('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", |
|
"test:jsr": "npx jsr@latest publish --dry-run", |
|
"pretest": "npm run build", |
|
"test": "mocha tests/", |
|
"test:coverage": "c8 npm test" |
|
}, |
|
"keywords": [ |
|
"eslint", |
|
"eslintplugin", |
|
"eslint-plugin" |
|
], |
|
"license": "Apache-2.0", |
|
"devDependencies": { |
|
"@eslint/core": "^0.7.0", |
|
"c8": "^9.1.0", |
|
"mocha": "^10.4.0", |
|
"rollup": "^4.16.2", |
|
"rollup-plugin-copy": "^3.5.0", |
|
"typescript": "^5.4.5" |
|
}, |
|
"engines": { |
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0" |
|
}, |
|
"dependencies": { |
|
"levn": "^0.4.1" |
|
} |
|
}
|
|
|