eslint-config/packages/eslint-plugin-antfu/package.json

32 lines
634 B
JSON
Raw Normal View History

2022-04-02 23:18:36 +08:00
{
"name": "eslint-plugin-antfu",
2022-04-07 06:14:31 +08:00
"version": "0.20.2",
2022-04-02 23:18:36 +08:00
"license": "MIT",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && unbuild",
"stub": "unbuild --stub",
2022-04-02 23:51:24 +08:00
"test": "vitest",
2022-04-02 23:18:36 +08:00
"prepublishOnly": "nr build"
},
"dependencies": {
"@typescript-eslint/utils": "^5.17.0"
},
"devDependencies": {
2022-04-02 23:51:24 +08:00
"unbuild": "^0.7.0",
"vitest": "^0.8.2"
2022-04-02 23:18:36 +08:00
}
}