forked from react-component/mentions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.02 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@rc-component/mentions",
"version": "1.1.4",
"description": "React Mentions",
"keywords": [
"react",
"react-component",
"react-mentions",
"mentions"
],
"homepage": "http://github.com/react-component/mentions",
"bugs": {
"url": "http://github.com/react-component/mentions/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:react-component/mentions.git"
},
"license": "MIT",
"main": "./lib/index",
"module": "./es/index",
"files": [
"assets/*.css",
"es",
"dist",
"lib"
],
"scripts": {
"compile": "father build",
"coverage": "rc-test --coverage",
"docs:build": "dumi build",
"docs:deploy": "gh-pages -d .doc",
"gh-pages": "npm run docs:build && npm run docs:deploy",
"lint": "eslint src/ --ext .tsx,.ts",
"prepare": "husky install",
"prepublishOnly": "npm run compile && rc-np",
"postpublish": "npm run gh-pages",
"start": "dumi dev",
"test": "rc-test"
},
"lint-staged": {
"**/*.{js,jsx,tsx,ts,md,json}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@rc-component/input": "~1.0.1",
"@rc-component/menu": "~1.0.0",
"@rc-component/textarea": "~1.0.0",
"@rc-component/trigger": "^3.0.0",
"@rc-component/util": "^1.2.0",
"classnames": "^2.2.6"
},
"devDependencies": {
"@rc-component/father-plugin": "^2.0.2",
"@rc-component/np": "^1.0.3",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@types/classnames": "^2.2.6",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"@types/warning": "^3.0.0",
"@umijs/fabric": "^3.0.0",
"dumi": "^2.0.18",
"eslint": "^7.0.0",
"father": "^4.0.0",
"gh-pages": "^5.0.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"rc-test": "^7.0.14",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"typescript": "^5.0.4"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
}
}