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-05-13 23:22:44 +08:00
"version": "0.23.1",
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": {
2022-05-03 01:12:21 +08:00
"@typescript-eslint/utils": "^5.22.0"
2022-04-02 23:18:36 +08:00
},
"devDependencies": {
2022-04-23 09:23:11 +08:00
"unbuild": "^0.7.4",
"vitest": "^0.9.4"
2022-04-02 23:18:36 +08:00
}
}