amis-rpc-design/node_modules/awesome-react-icons/package.json

75 lines
1.9 KiB
JSON
Raw Normal View History

2023-10-07 19:42:30 +08:00
{
"name": "awesome-react-icons",
"version": "1.4.8",
"description": "Yet another minimal icons library",
"license": "MIT",
"repository": "https://github.com/abhijithvijayan/awesome-react-icons.git",
"author": {
"name": "abhijithvijayan",
"email": "email@abhijithvijayan.in",
"url": "https://abhijithvijayan.in"
},
"engines": {
"node": ">=12.18.3"
},
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/cjs/index.d.ts",
"files": [
"lib"
],
"scripts": {
"watch": "tsc --module esnext --outDir lib/esm --watch",
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"build:esm": "tsc --module esnext --outDir lib/esm",
"build": "rimraf lib && yarn build:cjs && yarn build:esm",
"prepare": "install-peers",
"pack:list": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz",
"prepublishOnly": "yarn build",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"yarn run lint:fix"
]
},
"keywords": [
"awesome",
"react",
"icons"
],
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@abhijithvijayan/eslint-config": "2.5.6",
"@abhijithvijayan/eslint-config-airbnb": "^1.0.2",
"@abhijithvijayan/tsconfig": "^1.3.0",
"@types/node": "^14.14.6",
"@types/react": "^16.9.55",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.0",
"install-peers-cli": "^2.2.0",
"lint-staged": "^10.5.0",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"typescript": "^4.0.5"
}
}