12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- {
- "name": "@rc-component/portal",
- "version": "1.1.2",
- "description": "React Portal Component",
- "keywords": [
- "react",
- "react-component",
- "react-portal"
- ],
- "homepage": "https://github.com/react-component/portal",
- "bugs": {
- "url": "https://github.com/react-component/portal/issues"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/react-component/portal.git"
- },
- "license": "MIT",
- "author": "smith3816@gmail.com",
- "main": "./lib/index",
- "module": "./es/index",
- "typings": "es/index.d.ts",
- "files": [
- "lib",
- "es",
- "dist"
- ],
- "scripts": {
- "compile": "father build",
- "deploy": "npm run docs:build && npm run docs:deploy",
- "docs:build": "dumi build",
- "docs:deploy": "gh-pages -d docs-dist",
- "lint": "eslint src/ --ext .tsx,.ts",
- "lint:tsc": "tsc -p tsconfig.json --noEmit",
- "now-build": "npm run docs:build",
- "prepublishOnly": "npm run compile && np --no-cleanup --yolo --no-publish",
- "prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
- "start": "dumi dev",
- "test": "npm run test:client && npm run test:server",
- "test:client": "umi-test --testPathIgnorePatterns=ssr.test.tsx --testPathIgnorePatterns=ssr.test.tsx",
- "test:coverage": "npm run test:client --coverage",
- "test:server": "umi-test --env=node -- tests/ssr.test.tsx",
- "watch": "father dev"
- },
- "dependencies": {
- "@babel/runtime": "^7.18.0",
- "classnames": "^2.3.2",
- "rc-util": "^5.24.4"
- },
- "devDependencies": {
- "@rc-component/father-plugin": "^1.0.0",
- "@testing-library/jest-dom": "^5.16.4",
- "@testing-library/react": "^13.0.0",
- "@types/jest": "^26.0.20",
- "@types/react": "^18.0.0",
- "@types/react-dom": "^18.0.0",
- "@umijs/fabric": "^2.5.2",
- "dumi": "^1.1.0",
- "eslint": "^7.18.0",
- "father": "^4.0.0-rc.8",
- "gh-pages": "^3.1.0",
- "np": "^5.0.3",
- "prettier": "^2.1.2",
- "react": "^18.0.0",
- "react-dom": "^18.0.0",
- "typescript": "^4.6.3",
- "umi-test": "^1.9.7"
- },
- "peerDependencies": {
- "react": ">=16.9.0",
- "react-dom": ">=16.9.0"
- },
- "engines": {
- "node": ">=8.x"
- }
- }
|